Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.5 KB

File metadata and controls

31 lines (22 loc) · 1.5 KB

ShipmentDomesticByRateGroupMetadataInner

The data that provides information about other interrelated/ required sub-data.
Here, metadata details consists of CostAccount Name and Value.

Properties

Name Type Description Notes
name str Name of the Cost Account which are linked to Shipment. [optional]
value str Indicates the value for the CostAccount. [optional]

Example

from shipping.models.shipment_domestic_by_rate_group_metadata_inner import ShipmentDomesticByRateGroupMetadataInner

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

# convert the object into a dict
shipment_domestic_by_rate_group_metadata_inner_dict = shipment_domestic_by_rate_group_metadata_inner_instance.to_dict()
# create an instance of ShipmentDomesticByRateGroupMetadataInner from a dict
shipment_domestic_by_rate_group_metadata_inner_from_dict = ShipmentDomesticByRateGroupMetadataInner.from_dict(shipment_domestic_by_rate_group_metadata_inner_dict)

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