SetShuffleModeRequestDto

Class SetShuffleModeRequestDto.

Properties

Name Type Description Notes
mode GroupShuffleMode Gets or sets the shuffle mode. [optional]

Example

from jellyfin.generated.api_10_11.models.set_shuffle_mode_request_dto import SetShuffleModeRequestDto

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

# convert the object into a dict
set_shuffle_mode_request_dto_dict = set_shuffle_mode_request_dto_instance.to_dict()
# create an instance of SetShuffleModeRequestDto from a dict
set_shuffle_mode_request_dto_from_dict = SetShuffleModeRequestDto.from_dict(set_shuffle_mode_request_dto_dict)

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