Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.51 KB

File metadata and controls

35 lines (26 loc) · 1.51 KB

PatchedUserWriteStageRequest

UserWriteStage Serializer

Properties

Name Type Description Notes
name str [optional]
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.patched_user_write_stage_request import PatchedUserWriteStageRequest

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

# convert the object into a dict
patched_user_write_stage_request_dict = patched_user_write_stage_request_instance.to_dict()
# create an instance of PatchedUserWriteStageRequest from a dict
patched_user_write_stage_request_from_dict = PatchedUserWriteStageRequest.from_dict(patched_user_write_stage_request_dict)

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