StartupUserDto

The startup user DTO.

Properties

Name Type Description Notes
name str Gets or sets the username. [optional]
password str Gets or sets the user's password. [optional]

Example

from jellyfin.generated.api_10_10.models.startup_user_dto import StartupUserDto

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

# convert the object into a dict
startup_user_dto_dict = startup_user_dto_instance.to_dict()
# create an instance of StartupUserDto from a dict
startup_user_dto_from_dict = StartupUserDto.from_dict(startup_user_dto_dict)

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