Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.29 KB

supporteddefaultresponsedefaults.md

File metadata and controls

27 lines (20 loc) · 1.29 KB

SupportedDefaultResponseDefaults

Properties

Name Type Description Notes
id SupportedDefaultResponseDefaultsId

Example

from moonsdk.models.supported_default_response_defaults import SupportedDefaultResponseDefaults

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

# convert the object into a dict
supported_default_response_defaults_dict = supported_default_response_defaults_instance.to_dict()
# create an instance of SupportedDefaultResponseDefaults from a dict
supported_default_response_defaults_form_dict = supported_default_response_defaults.from_dict(supported_default_response_defaults_dict)

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