You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Denotes the total number of records present in the database
Example
fromwallet.models.paginated_wt_merchant_creditsimportPaginatedWTMerchantCredits# TODO update the JSON string belowjson="{}"# create an instance of PaginatedWTMerchantCredits from a JSON stringpaginated_wt_merchant_credits_instance=PaginatedWTMerchantCredits.from_json(json)
# print the JSON string representation of the objectprintPaginatedWTMerchantCredits.to_json()
# convert the object into a dictpaginated_wt_merchant_credits_dict=paginated_wt_merchant_credits_instance.to_dict()
# create an instance of PaginatedWTMerchantCredits from a dictpaginated_wt_merchant_credits_form_dict=paginated_wt_merchant_credits.from_dict(paginated_wt_merchant_credits_dict)