Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

RenewalsSearchRequest.md

File metadata and controls

32 lines (23 loc) · 1.25 KB

RenewalsSearchRequest

Properties

Name Type Description Notes
status RenewalsSearchRequestStatus [optional]
date_type RenewalsSearchRequestDateType [optional]
vendor str The name of the Vendor. [optional]
end_user str The name of the enduser. [optional]

Example

from xi.sdk.resellers.models.renewals_search_request import RenewalsSearchRequest

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

# convert the object into a dict
renewals_search_request_dict = renewals_search_request_instance.to_dict()
# create an instance of RenewalsSearchRequest from a dict
renewals_search_request_from_dict = RenewalsSearchRequest.from_dict(renewals_search_request_dict)

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