Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

OrderCreateRequestVmf.md

File metadata and controls

30 lines (21 loc) · 1.28 KB

OrderCreateRequestVmf

Vendor mandatory fields, this is required in case of warranty orders.

Properties

Name Type Description Notes
vend_auth_number str Authorization number provided by vendor to Ingram's reseller. Orders will be placed on hold without this value, vendor specific mandatory field - please reach out Ingram Sales team for list of vendor for whom this is mandatory. [optional]

Example

from xi.sdk.resellers.models.order_create_request_vmf import OrderCreateRequestVmf

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

# convert the object into a dict
order_create_request_vmf_dict = order_create_request_vmf_instance.to_dict()
# create an instance of OrderCreateRequestVmf from a dict
order_create_request_vmf_from_dict = OrderCreateRequestVmf.from_dict(order_create_request_vmf_dict)

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