Jellyfin Qt
QML Library for interacting with the Jellyfin multimedia server
Loading...
Searching...
No Matches
queuerequestdto.h
Go to the documentation of this file.
1/*
2 * Sailfin: a Jellyfin client written using Qt
3 * Copyright (C) 2021 Chris Josten and the Sailfin Contributors.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19/*
20 * WARNING: THIS IS AN AUTOMATICALLY GENERATED FILE! PLEASE DO NOT EDIT THIS, AS YOUR EDITS WILL GET
21 * OVERWRITTEN AT SOME POINT!
22 *
23 * If there is a bug in this file, please fix the code generator used to generate this file found in
24 * core/openapigenerator.d.
25 *
26 * This file is generated based on Jellyfin's OpenAPI description, "openapi.json". Please update that
27 * file with a newer file if needed instead of manually updating the files.
28 */
29
30#ifndef JELLYFIN_DTO_QUEUEREQUESTDTO_H
31#define JELLYFIN_DTO_QUEUEREQUESTDTO_H
32
33#include <QJsonObject>
34#include <QJsonValue>
35#include <QList>
36#include <QString>
37#include <QStringList>
38#include <optional>
39
42
43namespace Jellyfin {
44// Forward declaration
45class ApiClient;
46}
47namespace Jellyfin {
48namespace DTO {
49
50
52public:
54 QStringList itemIds,
56 );
57
58 QueueRequestDto(const QueueRequestDto &other);
59
63 void replaceData(QueueRequestDto &other);
64
65 static QueueRequestDto fromJson(QJsonObject source);
66 void setFromJson(QJsonObject source);
67 QJsonObject toJson() const;
68
69 // Properties
73 QStringList itemIds() const;
77 void setItemIds(QStringList newItemIds);
78
79
80 GroupQueueMode mode() const;
81
82 void setMode(GroupQueueMode newMode);
83
84
85protected:
86 QStringList m_itemIds;
88
89private:
90 // Private constructor which generates an invalid object, for use withing QueueRequestDto::fromJson();
92};
93
94
95} // NS DTO
96
97namespace Support {
98
100
101template <>
103
104template<>
106
107} // NS DTO
108} // NS Jellyfin
109
110#endif // JELLYFIN_DTO_QUEUEREQUESTDTO_H
An Api client for Jellyfin. Handles requests and authentication.
Definition apiclient.h:90
Definition queuerequestdto.h:51
QStringList m_itemIds
Definition queuerequestdto.h:86
QStringList itemIds() const
Gets or sets the items to enqueue.
Definition queuerequestdto.cpp:77
void setFromJson(QJsonObject source)
Definition queuerequestdto.cpp:63
void replaceData(QueueRequestDto &other)
Definition queuerequestdto.cpp:51
void setMode(GroupQueueMode newMode)
Definition queuerequestdto.cpp:85
void setItemIds(QStringList newItemIds)
Gets or sets the items to enqueue.
Definition queuerequestdto.cpp:79
QJsonObject toJson() const
Definition queuerequestdto.cpp:69
QueueRequestDto(QStringList itemIds, GroupQueueMode mode)
Definition queuerequestdto.cpp:36
static QueueRequestDto fromJson(QJsonObject source)
Definition queuerequestdto.cpp:56
GroupQueueMode mode() const
Definition queuerequestdto.cpp:83
GroupQueueMode m_mode
Definition queuerequestdto.h:87
Contains auto-generated Data Transfer Objects for the Jellyfin HTTP API.
GroupQueueModeClass::Value GroupQueueMode
Definition groupqueuemode.h:59
Definition accessschedule.h:128
Jellyfin::DTO::QueueRequestDto QueueRequestDto
Definition queuerequestdto.h:99
AccessSchedule fromJsonValue(const QJsonValue &source, convertType< AccessSchedule >)
Definition accessschedule.cpp:133
QJsonValue toJsonValue(const AccessSchedule &source, convertType< AccessSchedule >)
Definition accessschedule.cpp:139
Definition jsonconvimpl.h:45