| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| order_number | int | ||
| id | SaveTicketSettingsRequestPaymentDesignID | ||
| created_at | datetime | ||
| updated_at | datetime | ||
| is_active | bool | ||
| merchant_id | str |
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)