Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

MultipieceRatesResponse

description

Properties

Name Type Description Notes
from_address MultipieceRatesRequestFromAddress [optional]
to_address MultipieceRatesRequestToAddress [optional]
service_id str description [optional]
rates List[MultipieceRatesResponseRatesInner] description [optional]

Example

from shipping.models.multipiece_rates_response import MultipieceRatesResponse

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

# convert the object into a dict
multipiece_rates_response_dict = multipiece_rates_response_instance.to_dict()
# create an instance of MultipieceRatesResponse from a dict
multipiece_rates_response_from_dict = MultipieceRatesResponse.from_dict(multipiece_rates_response_dict)

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