Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

WTQuickLinkCreateParams

Properties

Name Type Description Notes
title object
url str
icon object
order_number int
link_book_section_id WTQuickLinkLinkBookSectionID [optional]

Example

from wallet.models.wt_quick_link_create_params import WTQuickLinkCreateParams

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

# convert the object into a dict
wt_quick_link_create_params_dict = wt_quick_link_create_params_instance.to_dict()
# create an instance of WTQuickLinkCreateParams from a dict
wt_quick_link_create_params_form_dict = wt_quick_link_create_params.from_dict(wt_quick_link_create_params_dict)

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