Skip to content

CreateReturnRequest

Properties

Name Type Description Notes
service ServiceCode
shipment Shipment

Example

from click_and_drop_api.models.create_return_request import CreateReturnRequest

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

# convert the object into a dict
create_return_request_dict = create_return_request_instance.to_dict()
# create an instance of CreateReturnRequest from a dict
create_return_request_from_dict = CreateReturnRequest.from_dict(create_return_request_dict)
[Back to Model list] [Back to API list] [Back to README]