Packages

Erlang Kubernetes client

Current section

Files

Jump to
kuberl gen kuberl_v1beta1_json_schema_props_or_string_array.erl
Raw

gen/kuberl_v1beta1_json_schema_props_or_string_array.erl

-module(kuberl_v1beta1_json_schema_props_or_string_array).
-export([encode/1]).
-export_type([kuberl_v1beta1_json_schema_props_or_string_array/0]).
-type kuberl_v1beta1_json_schema_props_or_string_array() ::
#{ 'Property' := list(),
'Schema' := kuberl_v1beta1_json_schema_props:kuberl_v1beta1_json_schema_props()
}.
encode(#{ 'Property' := Property,
'Schema' := Schema
}) ->
#{ 'Property' => Property,
'Schema' => Schema
}.