Denotes the key using which the records need to be sorted
| Name | Type | Description | Notes |
|---|
from wallet.models.member_search_sort_key import MemberSearchSortKey
# TODO update the JSON string below
json = "{}"
# create an instance of MemberSearchSortKey from a JSON string
member_search_sort_key_instance = MemberSearchSortKey.from_json(json)
# print the JSON string representation of the object
print MemberSearchSortKey.to_json()
# convert the object into a dict
member_search_sort_key_dict = member_search_sort_key_instance.to_dict()
# create an instance of MemberSearchSortKey from a dict
member_search_sort_key_form_dict = member_search_sort_key.from_dict(member_search_sort_key_dict)