Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 857 Bytes

File metadata and controls

30 lines (21 loc) · 857 Bytes

RoleRequest

Role serializer

Properties

Name Type Description Notes
name str

Example

from authentik_client.models.role_request import RoleRequest

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

# convert the object into a dict
role_request_dict = role_request_instance.to_dict()
# create an instance of RoleRequest from a dict
role_request_from_dict = RoleRequest.from_dict(role_request_dict)

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