Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.69 KB

File metadata and controls

37 lines (28 loc) · 2.69 KB

ReferenceV2

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 example values 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]
po_number str The Postal Office Number. <br /> `Max length = 30`. [optional]
department str The department of the Recipient. <br /> `Max length = 30`. [optional]
additional_reference1 str Additional Reference is hardly used, but sender can mention anything as per requirement, just for Recipient's information. <br /> `Max length = 30`. [optional]
additional_reference2 str Any tags or information that to be shown to Recipient, can be mentioned by Sender, which is not indicated on AdditionalReference1 field, e.g. PO No, Order No. etc.<br /> `Max length = 30`. [optional]

Example

from shipping.models.reference_v2 import ReferenceV2

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

# convert the object into a dict
reference_v2_dict = reference_v2_instance.to_dict()
# create an instance of ReferenceV2 from a dict
reference_v2_from_dict = ReferenceV2.from_dict(reference_v2_dict)

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