Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.87 KB

File metadata and controls

31 lines (22 loc) · 1.87 KB

GetSingleShipmentRateSpecialServicesInner

Properties

Name Type Description Notes
fee float The amount of the specialSevice. [optional]
input_parameters List[GetSingleShipmentRateSpecialServicesInnerInputParametersInner] >-The parameters to set for the special service, such as an insurance value or a receipt-number format. This is required if the specialservice requires input parameters. If a special service does not require input parameters, you can either leave out the array or pass an empty array. [optional]
special_service_id str A unique identifier associated to the Special Service , which depends on the carrier based service. [optional]

Example

from shipping.models.get_single_shipment_rate_special_services_inner import GetSingleShipmentRateSpecialServicesInner

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

# convert the object into a dict
get_single_shipment_rate_special_services_inner_dict = get_single_shipment_rate_special_services_inner_instance.to_dict()
# create an instance of GetSingleShipmentRateSpecialServicesInner from a dict
get_single_shipment_rate_special_services_inner_from_dict = GetSingleShipmentRateSpecialServicesInner.from_dict(get_single_shipment_rate_special_services_inner_dict)

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