Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.41 KB

File metadata and controls

35 lines (26 loc) · 1.41 KB

UserWriteStageRequest

UserWriteStage Serializer

Properties

Name Type Description Notes
name str
user_creation_mode UserCreationModeEnum [optional]
create_users_as_inactive bool When set, newly created users are inactive and cannot login. [optional]
create_users_group UUID Optionally add newly created users to this group. [optional]
user_type UserTypeEnum [optional]
user_path_template str [optional]

Example

from authentik_client.models.user_write_stage_request import UserWriteStageRequest

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

# convert the object into a dict
user_write_stage_request_dict = user_write_stage_request_instance.to_dict()
# create an instance of UserWriteStageRequest from a dict
user_write_stage_request_from_dict = UserWriteStageRequest.from_dict(user_write_stage_request_dict)

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