Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.1 KB

File metadata and controls

36 lines (27 loc) · 1.1 KB

TypeCreate

Types of an object that can be created

Properties

Name Type Description Notes
name str
description str
component str
model_name str
icon_url str [optional]
requires_enterprise bool [optional] [default to False]
deprecated bool [optional] [default to False]

Example

from authentik_client.models.type_create import TypeCreate

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

# convert the object into a dict
type_create_dict = type_create_instance.to_dict()
# create an instance of TypeCreate from a dict
type_create_from_dict = TypeCreate.from_dict(type_create_dict)

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