Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.2 KB

File metadata and controls

38 lines (29 loc) · 1.2 KB

LinkBook

Properties

Name Type Description Notes
title str
url str
icon str
order_number int
link_book_section_id WTLinkBookLinkBookSectionID [optional]
id SaveTicketSettingsRequestPaymentDesignID
created_at datetime
updated_at datetime
is_active bool
merchant_id str

Example

from wallet.models.link_book import LinkBook

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

# convert the object into a dict
link_book_dict = link_book_instance.to_dict()
# create an instance of LinkBook from a dict
link_book_form_dict = link_book.from_dict(link_book_dict)

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