Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.16 KB

File metadata and controls

37 lines (28 loc) · 1.16 KB

WTMerchantUpdate

Properties

Name Type Description Notes
company_name object
address1 object
address2 object
city object
state object
country object
phone_number object
zip object
currency_abbreviation object [optional]

Example

from wallet.models.wt_merchant_update import WTMerchantUpdate

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

# convert the object into a dict
wt_merchant_update_dict = wt_merchant_update_instance.to_dict()
# create an instance of WTMerchantUpdate from a dict
wt_merchant_update_form_dict = wt_merchant_update.from_dict(wt_merchant_update_dict)

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