Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

CreateDefaults

Properties

Name Type Description Notes
name str Name of the Default, e.g., FedEx-SAKS. [optional]
default_id str A unique identifier to be assigned to the Default. [optional]
sending_options SendingOptions [optional]

Example

from shipping.models.create_defaults import CreateDefaults

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

# convert the object into a dict
create_defaults_dict = create_defaults_instance.to_dict()
# create an instance of CreateDefaults from a dict
create_defaults_from_dict = CreateDefaults.from_dict(create_defaults_dict)

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