Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1007 Bytes

PagePaymentLink.md

File metadata and controls

31 lines (22 loc) · 1007 Bytes

PagePaymentLink

Properties

Name Type Description Notes
pageable Pageable
results List[PaymentLink]
total int

Example

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)

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