Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.6 KB

File metadata and controls

42 lines (33 loc) · 1.6 KB

Member

Properties

Name Type Description Notes
id str
merchant_id str
created_at datetime The timestamp of when this resource was created
updated_at datetime The timestamp of when this resource was updated
is_active bool Denotes if this resource is active
first_name str An optional first name of the member [optional]
last_name str An optional last name of the member [optional]
membership_tier_id str
mobile_number str
email str
birthday str Represents the date of birth of the member. Defaults to 0000-00-00, which represents that the date of birth has not been configured
points_accrued int The number of points that the member has accrued
member_id str Member ID as represented by the merchant
membership_tier_redeemable_id str

Example

from wallet.models.member import Member

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

# convert the object into a dict
member_dict = member_instance.to_dict()
# create an instance of Member from a dict
member_form_dict = member.from_dict(member_dict)

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