Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

GetMembershipNativeResponse.md

File metadata and controls

32 lines (23 loc) · 1.34 KB

GetMembershipNativeResponse

This response returns membership detail.

Properties

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]

Example

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)

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