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 scope. It must be unique within the organization template.
[optional]
description
str
The updated description of the organization scope.
[optional]
Example
frompy_logto.models.update_organization_scope_requestimportUpdateOrganizationScopeRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateOrganizationScopeRequest from a JSON stringupdate_organization_scope_request_instance=UpdateOrganizationScopeRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateOrganizationScopeRequest.to_json())
# convert the object into a dictupdate_organization_scope_request_dict=update_organization_scope_request_instance.to_dict()
# create an instance of UpdateOrganizationScopeRequest from a dictupdate_organization_scope_request_from_dict=UpdateOrganizationScopeRequest.from_dict(update_organization_scope_request_dict)