Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.03 KB

File metadata and controls

31 lines (23 loc) · 1.03 KB

ScopeResponse

The response containing the scope information.

Properties

Name Type Description Notes
name str The scope name. [optional]
group str The group the scope belongs to. [optional]
type str The scope type. [optional]

Example

from docspace_api_sdk.models.scope_response import ScopeResponse

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

# convert the object into a dict
scope_response_dict = scope_response_instance.to_dict()
# create an instance of ScopeResponse from a dict
scope_response_from_dict = ScopeResponse.from_dict(scope_response_dict)

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