Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

PaginatedWTMerchantCredits

Properties

Name Type Description Notes
results object The page of records returned for this request.
length object Denotes the length of the results array
total object Denotes the total number of records present in the database

Example

from wallet.models.paginated_wt_merchant_credits import PaginatedWTMerchantCredits

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

# convert the object into a dict
paginated_wt_merchant_credits_dict = paginated_wt_merchant_credits_instance.to_dict()
# create an instance of PaginatedWTMerchantCredits from a dict
paginated_wt_merchant_credits_form_dict = paginated_wt_merchant_credits.from_dict(paginated_wt_merchant_credits_dict)

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