Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

ReturnLabelResponseLabelLayoutInner.md

File metadata and controls

33 lines (24 loc) · 1.31 KB

ReturnLabelResponseLabelLayoutInner

Properties

Name Type Description Notes
content_type str [optional]
contents str [optional]
file_format str [optional]
size str [optional]
type str [optional]

Example

from shipping.models.return_label_response_label_layout_inner import ReturnLabelResponseLabelLayoutInner

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

# convert the object into a dict
return_label_response_label_layout_inner_dict = return_label_response_label_layout_inner_instance.to_dict()
# create an instance of ReturnLabelResponseLabelLayoutInner from a dict
return_label_response_label_layout_inner_from_dict = ReturnLabelResponseLabelLayoutInner.from_dict(return_label_response_label_layout_inner_dict)

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