Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

WTCustomerSearchByMemberID

Properties

Name Type Description Notes
member_id object

Example

from wallet.models.wt_customer_search_by_member_id import WTCustomerSearchByMemberID

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

# convert the object into a dict
wt_customer_search_by_member_id_dict = wt_customer_search_by_member_id_instance.to_dict()
# create an instance of WTCustomerSearchByMemberID from a dict
wt_customer_search_by_member_id_form_dict = wt_customer_search_by_member_id.from_dict(wt_customer_search_by_member_id_dict)

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