Name | Type | Description | Notes |
---|---|---|---|
pageable | Pageable | ||
results | List[PaymentLink] | ||
total | int |
from openapi_client.models.page_payment_link import PagePaymentLink
# TODO update the JSON string below
json = "{}"
# create an instance of PagePaymentLink from a JSON string
page_payment_link_instance = PagePaymentLink.from_json(json)
# print the JSON string representation of the object
print(PagePaymentLink.to_json())
# convert the object into a dict
page_payment_link_dict = page_payment_link_instance.to_dict()
# create an instance of PagePaymentLink from a dict
page_payment_link_from_dict = PagePaymentLink.from_dict(page_payment_link_dict)