| Name | Type | Description | Notes |
|---|---|---|---|
| quote_number | str | A unique identifier generated by Ingram Micro's CRM specific to each quote. | [optional] |
| products | List[VendorRequiredInfoRequestProductsInner] | [optional] |
from xi.sdk.resellers.models.vendor_required_info_request import VendorRequiredInfoRequest
# TODO update the JSON string below
json = "{}"
# create an instance of VendorRequiredInfoRequest from a JSON string
vendor_required_info_request_instance = VendorRequiredInfoRequest.from_json(json)
# print the JSON string representation of the object
print(VendorRequiredInfoRequest.to_json())
# convert the object into a dict
vendor_required_info_request_dict = vendor_required_info_request_instance.to_dict()
# create an instance of VendorRequiredInfoRequest from a dict
vendor_required_info_request_from_dict = VendorRequiredInfoRequest.from_dict(vendor_required_info_request_dict)