Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.57 KB

File metadata and controls

34 lines (25 loc) · 1.57 KB

RateShopResponse

Properties

Name Type Description Notes
from_address RateShopResponseFromAddress [optional]
parcel RateShopResponseParcel [optional]
rates List[RateShopResponseRatesInner] It displays all available rates for each services [optional]
to_address RateShopResponseToAddress [optional]
is_hazmat bool isHazmat if set to true,only services which support Hazardous material shipment would be visible in the response [optional]
errors List[RateShopResponseErrorsInner] It display any error while getting rates [optional]

Example

from shipping.models.rate_shop_response import RateShopResponse

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

# convert the object into a dict
rate_shop_response_dict = rate_shop_response_instance.to_dict()
# create an instance of RateShopResponse from a dict
rate_shop_response_from_dict = RateShopResponse.from_dict(rate_shop_response_dict)

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