Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.52 KB

DealsSearchResponseDealsInner.md

File metadata and controls

34 lines (25 loc) · 1.52 KB

DealsSearchResponseDealsInner

Properties

Name Type Description Notes
deal_id str Deal/Special bid number. [optional]
version str Most recent version number of the deal. [optional]
end_user str The end user/customer's name. [optional]
vendor str The vendor's name. [optional]
deal_expiry_date str Expiration date of the deal/Special bid. [optional]
links RenewalsSearchResponseRenewalsInnerLinksInner [optional]

Example

from xi.sdk.resellers.models.deals_search_response_deals_inner import DealsSearchResponseDealsInner

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

# convert the object into a dict
deals_search_response_deals_inner_dict = deals_search_response_deals_inner_instance.to_dict()
# create an instance of DealsSearchResponseDealsInner from a dict
deals_search_response_deals_inner_from_dict = DealsSearchResponseDealsInner.from_dict(deals_search_response_deals_inner_dict)

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