Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

GroupSchemaBase

Properties

Name Type Description Notes
id str The subschema name [optional] [readonly]
properties GroupSchemaBaseProperties The `#base` object properties [optional]
required List[str] A collection indicating required property names [optional] [readonly]
type str The object type [optional] [readonly]

Example

from okta.models.group_schema_base import GroupSchemaBase

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

# convert the object into a dict
group_schema_base_dict = group_schema_base_instance.to_dict()
# create an instance of GroupSchemaBase from a dict
group_schema_base_from_dict = GroupSchemaBase.from_dict(group_schema_base_dict)

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