forked from loafle/openapi-generator-original
* Update Python mustache templates to fix _form_ typo and correct casing for class name when calling from_dict() * Results of 'build the project' checklist step
1.1 KiB
1.1 KiB
AdditionalPropertiesClass
Properties
Name | Type | Description | Notes |
---|---|---|---|
map_property | Dict[str, str] | [optional] | |
map_of_map_property | Dict[str, Dict[str, str]] | [optional] |
Example
from petstore_api.models.additional_properties_class import AdditionalPropertiesClass
# TODO update the JSON string below
json = "{}"
# create an instance of AdditionalPropertiesClass from a JSON string
additional_properties_class_instance = AdditionalPropertiesClass.from_json(json)
# print the JSON string representation of the object
print AdditionalPropertiesClass.to_json()
# convert the object into a dict
additional_properties_class_dict = additional_properties_class_instance.to_dict()
# create an instance of AdditionalPropertiesClass from a dict
additional_properties_class_from_dict = AdditionalPropertiesClass.from_dict(additional_properties_class_dict)