Name of the carrier account which is provided while adding carrier.
| 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] |
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)