Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.28 KB

GetRoleByName200ResponsePagination.md

File metadata and controls

31 lines (23 loc) · 1.28 KB

GetRoleByName200ResponsePagination

Properties

Name Type Description Notes
after_cursor str [optional]
before_cursor str [optional]
next_link str [optional]
previous_link str [optional]

Example

from onelogin.models.get_role_by_name200_response_pagination import GetRoleByName200ResponsePagination

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

# convert the object into a dict
get_role_by_name200_response_pagination_dict = get_role_by_name200_response_pagination_instance.to_dict()
# create an instance of GetRoleByName200ResponsePagination from a dict
get_role_by_name200_response_pagination_form_dict = get_role_by_name200_response_pagination.from_dict(get_role_by_name200_response_pagination_dict)

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