Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.08 KB

File metadata and controls

35 lines (26 loc) · 1.08 KB

LinkBookSection

Properties

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