Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

WTMerchantUpdatePOSIntegration

Properties

Name Type Description Notes
info_genesis_property_id str

Example

from wallet.models.wt_merchant_update_pos_integration import WTMerchantUpdatePOSIntegration

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

# convert the object into a dict
wt_merchant_update_pos_integration_dict = wt_merchant_update_pos_integration_instance.to_dict()
# create an instance of WTMerchantUpdatePOSIntegration from a dict
wt_merchant_update_pos_integration_form_dict = wt_merchant_update_pos_integration.from_dict(wt_merchant_update_pos_integration_dict)

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