Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

WTQuickLinkSectionUpdateParams

Properties

Name Type Description Notes
name object
order_number int

Example

from wallet.models.wt_quick_link_section_update_params import WTQuickLinkSectionUpdateParams

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

# convert the object into a dict
wt_quick_link_section_update_params_dict = wt_quick_link_section_update_params_instance.to_dict()
# create an instance of WTQuickLinkSectionUpdateParams from a dict
wt_quick_link_section_update_params_form_dict = wt_quick_link_section_update_params.from_dict(wt_quick_link_section_update_params_dict)

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