Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1020 Bytes

File metadata and controls

29 lines (20 loc) · 1020 Bytes

AllDefaultsDataInner

Properties

Name Type Description Notes
defaults_response DefaultResponse [optional]

Example

from shipping.models.all_defaults_data_inner import AllDefaultsDataInner

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

# convert the object into a dict
all_defaults_data_inner_dict = all_defaults_data_inner_instance.to_dict()
# create an instance of AllDefaultsDataInner from a dict
all_defaults_data_inner_from_dict = AllDefaultsDataInner.from_dict(all_defaults_data_inner_dict)

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