Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

MerchantCreditSearch.md

File metadata and controls

32 lines (23 loc) · 1.21 KB

MerchantCreditSearch

Properties

Name Type Description Notes
is_archive_included bool Denotes if archived records should be included in the response payload [optional]
page_size int Denotes the number of records per page [optional]
page_num int Denotes the page number [optional]
key str The search key to be used

Example

from wallet.models.merchant_credit_search import MerchantCreditSearch

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

# convert the object into a dict
merchant_credit_search_dict = merchant_credit_search_instance.to_dict()
# create an instance of MerchantCreditSearch from a dict
merchant_credit_search_form_dict = merchant_credit_search.from_dict(merchant_credit_search_dict)

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