Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

WTLinkBookCreateParams

Properties

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

Example

from wallet.models.wt_link_book_create_params import WTLinkBookCreateParams

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

# convert the object into a dict
wt_link_book_create_params_dict = wt_link_book_create_params_instance.to_dict()
# create an instance of WTLinkBookCreateParams from a dict
wt_link_book_create_params_form_dict = wt_link_book_create_params.from_dict(wt_link_book_create_params_dict)

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