Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 989 Bytes

File metadata and controls

30 lines (21 loc) · 989 Bytes

WTMerchantURLUpdate

Properties

Name Type Description Notes
nickname str
destination_url str

Example

from wallet.models.wt_merchant_url_update import WTMerchantURLUpdate

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

# convert the object into a dict
wt_merchant_url_update_dict = wt_merchant_url_update_instance.to_dict()
# create an instance of WTMerchantURLUpdate from a dict
wt_merchant_url_update_form_dict = wt_merchant_url_update.from_dict(wt_merchant_url_update_dict)

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