Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.7 KB

ValidateQuoteResponse.md

File metadata and controls

36 lines (27 loc) · 1.7 KB

ValidateQuoteResponse

Properties

Name Type Description Notes
quote_number str A unique identifier generated by Ingram Micro's CRM specific to each quote. [optional]
vendor_name str The name of the vendor. [optional]
vmf_additional_attributes List[ValidateQuoteResponseVmfAdditionalAttributesInner] The object containing the list of fields required at a header level by the vendor. [optional]
lines List[ValidateQuoteResponseLinesInner] The object containing the lines from the quote. [optional]
quote_type int [optional]
vendor_group_name str [optional]
vendor_quote_number str [optional]
vendor_master_number str [optional]

Example

from xi.sdk.resellers.models.validate_quote_response import ValidateQuoteResponse

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

# convert the object into a dict
validate_quote_response_dict = validate_quote_response_instance.to_dict()
# create an instance of ValidateQuoteResponse from a dict
validate_quote_response_from_dict = ValidateQuoteResponse.from_dict(validate_quote_response_dict)

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