Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 982 Bytes

File metadata and controls

29 lines (20 loc) · 982 Bytes

MemberSearchSortKey

Denotes the key using which the records need to be sorted

Properties

Name Type Description Notes

Example

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)

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