You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The updated name of the organization role. It must be unique within the organization template.
[optional]
description
str
The updated description of the organization role.
[optional]
type
str
[optional]
Example
frompy_logto.models.update_organization_role_requestimportUpdateOrganizationRoleRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateOrganizationRoleRequest from a JSON stringupdate_organization_role_request_instance=UpdateOrganizationRoleRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateOrganizationRoleRequest.to_json())
# convert the object into a dictupdate_organization_role_request_dict=update_organization_role_request_instance.to_dict()
# create an instance of UpdateOrganizationRoleRequest from a dictupdate_organization_role_request_from_dict=UpdateOrganizationRoleRequest.from_dict(update_organization_role_request_dict)