Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 988 Bytes

MemberStoreResponse.md

File metadata and controls

28 lines (20 loc) · 988 Bytes

MemberStoreResponse

Properties

Name Type Description Notes
store MemberStore [optional]

Example

from sparkfly_client.models.member_store_response import MemberStoreResponse

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

# convert the object into a dict
member_store_response_dict = member_store_response_instance.to_dict()
# create an instance of MemberStoreResponse from a dict
member_store_response_form_dict = member_store_response.from_dict(member_store_response_dict)

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