Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

WTCustomerSearchByPhoneNumber

Properties

Name Type Description Notes
phone_number str

Example

from wallet.models.wt_customer_search_by_phone_number import WTCustomerSearchByPhoneNumber

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

# convert the object into a dict
wt_customer_search_by_phone_number_dict = wt_customer_search_by_phone_number_instance.to_dict()
# create an instance of WTCustomerSearchByPhoneNumber from a dict
wt_customer_search_by_phone_number_form_dict = wt_customer_search_by_phone_number.from_dict(wt_customer_search_by_phone_number_dict)

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