BufferRequestDto
Class BufferRequestDto.
Properties
Name | Type | Description | Notes |
---|---|---|---|
when | datetime | Gets or sets when the request has been made by the client. | [optional] |
position_ticks | int | Gets or sets the position ticks. | [optional] |
is_playing | bool | Gets or sets a value indicating whether the client playback is unpaused. | [optional] |
playlist_item_id | str | Gets or sets the playlist item identifier of the playing item. | [optional] |
Example
from jellyfin.generated.api_10_10.models.buffer_request_dto import BufferRequestDto
# TODO update the JSON string below
json = "{}"
# create an instance of BufferRequestDto from a JSON string
buffer_request_dto_instance = BufferRequestDto.from_json(json)
# print the JSON string representation of the object
print(BufferRequestDto.to_json())
# convert the object into a dict
buffer_request_dto_dict = buffer_request_dto_instance.to_dict()
# create an instance of BufferRequestDto from a dict
buffer_request_dto_from_dict = BufferRequestDto.from_dict(buffer_request_dto_dict)