Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

ReplaceOrganizationRoleScopesRequest.md

File metadata and controls

29 lines (20 loc) · 1.23 KB

ReplaceOrganizationRoleScopesRequest

Properties

Name Type Description Notes
organization_scope_ids List[str] An array of organization scope IDs to replace existing scopes.

Example

from py_logto.models.replace_organization_role_scopes_request import ReplaceOrganizationRoleScopesRequest

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

# convert the object into a dict
replace_organization_role_scopes_request_dict = replace_organization_role_scopes_request_instance.to_dict()
# create an instance of ReplaceOrganizationRoleScopesRequest from a dict
replace_organization_role_scopes_request_from_dict = ReplaceOrganizationRoleScopesRequest.from_dict(replace_organization_role_scopes_request_dict)

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