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
An array of organization scope IDs to be assigned. Existed scope IDs assignments will be ignored.
Example
frompy_logto.models.create_organization_role_scope_requestimportCreateOrganizationRoleScopeRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateOrganizationRoleScopeRequest from a JSON stringcreate_organization_role_scope_request_instance=CreateOrganizationRoleScopeRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateOrganizationRoleScopeRequest.to_json())
# convert the object into a dictcreate_organization_role_scope_request_dict=create_organization_role_scope_request_instance.to_dict()
# create an instance of CreateOrganizationRoleScopeRequest from a dictcreate_organization_role_scope_request_from_dict=CreateOrganizationRoleScopeRequest.from_dict(create_organization_role_scope_request_dict)