from moonsdk.models.supported_default_response_defaults import SupportedDefaultResponseDefaults# TODO update the JSON string belowjson ="{}"# create an instance of SupportedDefaultResponseDefaults from a JSON stringsupported_default_response_defaults_instance = SupportedDefaultResponseDefaults.from_json(json)# print the JSON string representation of the objectprint(SupportedDefaultResponseDefaults.to_json())# convert the object into a dictsupported_default_response_defaults_dict = supported_default_response_defaults_instance.to_dict()# create an instance of SupportedDefaultResponseDefaults from a dictsupported_default_response_defaults_form_dict = supported_default_response_defaults.from_dict(supported_default_response_defaults_dict)