| Name | Type | Description | Notes |
|---|---|---|---|
| name | object | ||
| order_number | object | ||
| id | AmenityId | ||
| created_at | object | ||
| updated_at | object | ||
| is_active | object | ||
| 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)