You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contains key value map for passing references. Max references allowed is 6. - References are tags or information that is printed on Shipping Label based on the customer's requirement. - Reference Fields can have values/indication like department name, invoice no., package description, purchase order no., carrier note, cost account no., transportation no., or PO No., etc. - Each of the reference field can have only one indication/value.
Properties
Name
Type
Description
Notes
reference1
str
Reference 1 can have one of the above-indicated values/information, which is printed on Label, e.g. Cost Account No. (if any) or Invoice Number. <br /> `Max length = 30`.
[optional]
reference2
str
Reference 2 can have other details as indicated in the list above. This is also printed on Label, e.g. Package Description . <br /> `Max length = 30`.
[optional]
reference3
str
Reference 3 can have the information which were not fulfilled in Ref1 and Ref2, e.g. Order No. or Purchase Order ID. <br /> `Max length = 30`.
[optional]
reference4
str
Reference 4 can have more information which were not provided in Ref1, Ref2, or Ref3 e.g. Carrier Note. <br /> `Max length = 30`.
[optional]
Example
fromshipping.models.print_document_request_referenceimportPrintDocumentRequestReference# TODO update the JSON string belowjson="{}"# create an instance of PrintDocumentRequestReference from a JSON stringprint_document_request_reference_instance=PrintDocumentRequestReference.from_json(json)
# print the JSON string representation of the objectprint(PrintDocumentRequestReference.to_json())
# convert the object into a dictprint_document_request_reference_dict=print_document_request_reference_instance.to_dict()
# create an instance of PrintDocumentRequestReference from a dictprint_document_request_reference_from_dict=PrintDocumentRequestReference.from_dict(print_document_request_reference_dict)