Jellyfin Qt
QML Library for interacting with the Jellyfin multimedia server
Loading...
Searching...
No Matches
guideinfo.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_GUIDEINFO_H
31#define JELLYFIN_DTO_GUIDEINFO_H
32
33#include <QDateTime>
34#include <QJsonObject>
35#include <QJsonValue>
36#include <optional>
37
39
40namespace Jellyfin {
41// Forward declaration
42class ApiClient;
43}
44namespace Jellyfin {
45namespace DTO {
46
47
48class GuideInfo {
49public:
50 GuideInfo(
51 QDateTime startDate,
52 QDateTime endDate
53 );
54
55 GuideInfo(const GuideInfo &other);
56
60 void replaceData(GuideInfo &other);
61
62 static GuideInfo fromJson(QJsonObject source);
63 void setFromJson(QJsonObject source);
64 QJsonObject toJson() const;
65
66 // Properties
70 QDateTime startDate() const;
74 void setStartDate(QDateTime newStartDate);
75
79 QDateTime endDate() const;
83 void setEndDate(QDateTime newEndDate);
84
85
86protected:
87 QDateTime m_startDate;
88 QDateTime m_endDate;
89
90private:
91 // Private constructor which generates an invalid object, for use withing GuideInfo::fromJson();
92 GuideInfo();
93};
94
95
96} // NS DTO
97
98namespace Support {
99
101
102template <>
103GuideInfo fromJsonValue(const QJsonValue &source, convertType<GuideInfo>);
104
105template<>
106QJsonValue toJsonValue(const GuideInfo &source, convertType<GuideInfo>);
107
108} // NS DTO
109} // NS Jellyfin
110
111#endif // JELLYFIN_DTO_GUIDEINFO_H
Definition guideinfo.h:48
void setStartDate(QDateTime newStartDate)
Gets or sets the start date.
Definition guideinfo.cpp:79
void setFromJson(QJsonObject source)
Definition guideinfo.cpp:63
QDateTime endDate() const
Gets or sets the end date.
Definition guideinfo.cpp:83
QDateTime m_endDate
Definition guideinfo.h:88
static GuideInfo fromJson(QJsonObject source)
Definition guideinfo.cpp:56
QJsonObject toJson() const
Definition guideinfo.cpp:69
QDateTime m_startDate
Definition guideinfo.h:87
void setEndDate(QDateTime newEndDate)
Gets or sets the end date.
Definition guideinfo.cpp:85
void replaceData(GuideInfo &other)
Definition guideinfo.cpp:51
QDateTime startDate() const
Gets or sets the start date.
Definition guideinfo.cpp:77
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