| Name |
Type |
Description |
Notes |
| first |
bool |
Indicates whether current page is the first page. |
|
| has_next |
bool |
Indicates whether current page has previous page. |
|
| has_previous |
bool |
Indicates whether current page has previous page. |
|
| items |
List[RememberMeToken] |
A chunk of items. |
|
| last |
bool |
Indicates whether current page is the last page. |
|
| page |
int |
Page number, starts from 1. If not set or equal to 0, it means no pagination. |
|
| size |
int |
Size of each page. If not set or equal to 0, it means no pagination. |
|
| total |
int |
Total elements. |
|
| total_pages |
int |
Indicates total pages. |
|
from halo_client.models.remember_me_token_list import RememberMeTokenList
# TODO update the JSON string below
json = "{}"
# create an instance of RememberMeTokenList from a JSON string
remember_me_token_list_instance = RememberMeTokenList.from_json(json)
# print the JSON string representation of the object
print(RememberMeTokenList.to_json())
# convert the object into a dict
remember_me_token_list_dict = remember_me_token_list_instance.to_dict()
# create an instance of RememberMeTokenList from a dict
remember_me_token_list_from_dict = RememberMeTokenList.from_dict(remember_me_token_list_dict)
[Back to Model list] [Back to API list] [Back to README]