Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.61 KB

File metadata and controls

34 lines (25 loc) · 1.61 KB

GetRates200Response

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.get_rates200_response import GetRates200Response

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

# convert the object into a dict
get_rates200_response_dict = get_rates200_response_instance.to_dict()
# create an instance of GetRates200Response from a dict
get_rates200_response_from_dict = GetRates200Response.from_dict(get_rates200_response_dict)

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