Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

SendingOptionsCarrierAccounts

Name of the carrier account which is provided while adding carrier.

Properties

Name Type Description Notes
key str This is the key mapped with the name of the carrier. [optional]
value str This is the value mapped with the CarrierAccount of the carrier. [optional]

Example

from shipping.models.sending_options_carrier_accounts import SendingOptionsCarrierAccounts

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

# convert the object into a dict
sending_options_carrier_accounts_dict = sending_options_carrier_accounts_instance.to_dict()
# create an instance of SendingOptionsCarrierAccounts from a dict
sending_options_carrier_accounts_from_dict = SendingOptionsCarrierAccounts.from_dict(sending_options_carrier_accounts_dict)

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