Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 892 Bytes

Scope.md

File metadata and controls

30 lines (22 loc) · 892 Bytes

Scope

Properties

Name Type Description Notes
id int Unique Scope ID value [optional]
value str Scope Value [optional]
description str Description of the scope [optional]

Example

from onelogin.models.scope import Scope

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

# convert the object into a dict
scope_dict = scope_instance.to_dict()
# create an instance of Scope from a dict
scope_form_dict = scope.from_dict(scope_dict)

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