This response returns membership detail.
Name | Type | Description | Notes |
---|---|---|---|
membership_status | str | Status of the memberID. | [optional] |
point_info | GetMembershipNativeResponsePointInfo | [optional] | |
points_expire_date | str | Earliest points expiry date. In `yyyy-mm-dd` format | [optional] |
from grabfood.models.get_membership_native_response import GetMembershipNativeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetMembershipNativeResponse from a JSON string
get_membership_native_response_instance = GetMembershipNativeResponse.from_json(json)
# print the JSON string representation of the object
print(GetMembershipNativeResponse.to_json())
# convert the object into a dict
get_membership_native_response_dict = get_membership_native_response_instance.to_dict()
# create an instance of GetMembershipNativeResponse from a dict
get_membership_native_response_from_dict = GetMembershipNativeResponse.from_dict(get_membership_native_response_dict)