Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.14 KB

LinkBookSection.md

File metadata and controls

35 lines (26 loc) · 1.14 KB

LinkBookSection

Properties

Name Type Description Notes
name str
order_number int
id SaveTicketSettingsRequestPaymentDesignID
created_at datetime
updated_at datetime
is_active bool
merchant_id str

Example

from wallet.models.link_book_section import LinkBookSection

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

# convert the object into a dict
link_book_section_dict = link_book_section_instance.to_dict()
# create an instance of LinkBookSection from a dict
link_book_section_form_dict = link_book_section.from_dict(link_book_section_dict)

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