DeviceInfoDtoQueryResult

Query result container.

Properties

Name Type Description Notes
items List[DeviceInfoDto] Gets or sets the items. [optional]
total_record_count int Gets or sets the total number of records available. [optional]
start_index int Gets or sets the index of the first record in Items. [optional]

Example

from jellyfin.generated.api_10_11.models.device_info_dto_query_result import DeviceInfoDtoQueryResult

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

# convert the object into a dict
device_info_dto_query_result_dict = device_info_dto_query_result_instance.to_dict()
# create an instance of DeviceInfoDtoQueryResult from a dict
device_info_dto_query_result_from_dict = DeviceInfoDtoQueryResult.from_dict(device_info_dto_query_result_dict)

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