Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.19 KB

File metadata and controls

38 lines (29 loc) · 1.19 KB

WTQuickLink

Properties

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

Example

from wallet.models.wt_quick_link import WTQuickLink

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

# convert the object into a dict
wt_quick_link_dict = wt_quick_link_instance.to_dict()
# create an instance of WTQuickLink from a dict
wt_quick_link_form_dict = wt_quick_link.from_dict(wt_quick_link_dict)

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