1.1 KiB

AllOfWithNestedOneOfAllOf

Properties

Name Type Description Notes
inner_name str [optional]
nested_oneof OneOfBasquePigDanishPig [optional]

Example

from petstore_api.models.all_of_with_nested_one_of_all_of import AllOfWithNestedOneOfAllOf

# TODO update the JSON string below
json = "{}"
# create an instance of AllOfWithNestedOneOfAllOf from a JSON string
all_of_with_nested_one_of_all_of_instance = AllOfWithNestedOneOfAllOf.from_json(json)
# print the JSON string representation of the object
print AllOfWithNestedOneOfAllOf.to_json()

# convert the object into a dict
all_of_with_nested_one_of_all_of_dict = all_of_with_nested_one_of_all_of_instance.to_dict()
# create an instance of AllOfWithNestedOneOfAllOf from a dict
all_of_with_nested_one_of_all_of_form_dict = all_of_with_nested_one_of_all_of.from_dict(all_of_with_nested_one_of_all_of_dict)

[Back to Model list] [Back to API list] [Back to README]