Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.55 KB

File metadata and controls

30 lines (21 loc) · 1.55 KB

ReturnLabelSpecialServicesInnerInputParametersInner

Properties

Name Type Description Notes
name str It takes the input parameters. `RETURN_PKG_DESCRIPTION` is required for UPS and `RMA_NUMBER` for FedEx [optional]
value str It specifies the input value [optional]

Example

from shipping.models.return_label_special_services_inner_input_parameters_inner import ReturnLabelSpecialServicesInnerInputParametersInner

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

# convert the object into a dict
return_label_special_services_inner_input_parameters_inner_dict = return_label_special_services_inner_input_parameters_inner_instance.to_dict()
# create an instance of ReturnLabelSpecialServicesInnerInputParametersInner from a dict
return_label_special_services_inner_input_parameters_inner_from_dict = ReturnLabelSpecialServicesInnerInputParametersInner.from_dict(return_label_special_services_inner_input_parameters_inner_dict)

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