CreateUserByName
The create user by name request body.
Properties
Name | Type | Description | Notes |
---|---|---|---|
name | str | Gets or sets the username. | |
password | str | Gets or sets the password. | [optional] |
Example
from jellyfin.generated.api_10_10.models.create_user_by_name import CreateUserByName
# TODO update the JSON string below
json = "{}"
# create an instance of CreateUserByName from a JSON string
create_user_by_name_instance = CreateUserByName.from_json(json)
# print the JSON string representation of the object
print(CreateUserByName.to_json())
# convert the object into a dict
create_user_by_name_dict = create_user_by_name_instance.to_dict()
# create an instance of CreateUserByName from a dict
create_user_by_name_from_dict = CreateUserByName.from_dict(create_user_by_name_dict)