Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
30 lines (21 loc) · 1.32 KB

RateShopResponseRatesInnerSurchargesInner.md

File metadata and controls

30 lines (21 loc) · 1.32 KB

RateShopResponseRatesInnerSurchargesInner

Properties

Name Type Description Notes
fee float The amount of the surcharge. [optional]
name str The type of surcharge. [optional]

Example

from shipping.models.rate_shop_response_rates_inner_surcharges_inner import RateShopResponseRatesInnerSurchargesInner

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

# convert the object into a dict
rate_shop_response_rates_inner_surcharges_inner_dict = rate_shop_response_rates_inner_surcharges_inner_instance.to_dict()
# create an instance of RateShopResponseRatesInnerSurchargesInner from a dict
rate_shop_response_rates_inner_surcharges_inner_from_dict = RateShopResponseRatesInnerSurchargesInner.from_dict(rate_shop_response_rates_inner_surcharges_inner_dict)

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