Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 2.3 KB

File metadata and controls

33 lines (24 loc) · 2.3 KB

PrintDocumentRequestReference

  • 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

from shipping.models.print_document_request_reference import PrintDocumentRequestReference

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

# convert the object into a dict
print_document_request_reference_dict = print_document_request_reference_instance.to_dict()
# create an instance of PrintDocumentRequestReference from a dict
print_document_request_reference_from_dict = PrintDocumentRequestReference.from_dict(print_document_request_reference_dict)

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