Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

WTMerchantUpdatePointsOfContact

Properties

Name Type Description Notes
billing_employee_id str
marketing_employee_id str [optional]
technical_employee_id str [optional]
customer_service_employee_id str [optional]

Example

from wallet.models.wt_merchant_update_points_of_contact import WTMerchantUpdatePointsOfContact

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

# convert the object into a dict
wt_merchant_update_points_of_contact_dict = wt_merchant_update_points_of_contact_instance.to_dict()
# create an instance of WTMerchantUpdatePointsOfContact from a dict
wt_merchant_update_points_of_contact_form_dict = wt_merchant_update_points_of_contact.from_dict(wt_merchant_update_points_of_contact_dict)

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