Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.13 KB

File metadata and controls

41 lines (32 loc) · 2.13 KB

PickMSMemberExcludeKeyofMSMemberMemberIdentifier

From T, pick a set of properties whose keys are in the union K

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

Example

from wallet.models.pick_ms_member_exclude_keyof_ms_member_member_identifier import PickMSMemberExcludeKeyofMSMemberMemberIdentifier

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

# convert the object into a dict
pick_ms_member_exclude_keyof_ms_member_member_identifier_dict = pick_ms_member_exclude_keyof_ms_member_member_identifier_instance.to_dict()
# create an instance of PickMSMemberExcludeKeyofMSMemberMemberIdentifier from a dict
pick_ms_member_exclude_keyof_ms_member_member_identifier_form_dict = pick_ms_member_exclude_keyof_ms_member_member_identifier.from_dict(pick_ms_member_exclude_keyof_ms_member_member_identifier_dict)

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