/* * Sailfin: a Jellyfin client written using Qt * Copyright (C) 2021 Chris Josten and the Sailfin Contributors. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /* * WARNING: THIS IS AN AUTOMATICALLY GENERATED FILE! PLEASE DO NOT EDIT THIS, AS YOUR EDITS WILL GET * OVERWRITTEN AT SOME POINT! * * If there is a bug in this file, please fix the code generator used to generate this file found in * core/openapigenerator.d. * * This file is generated based on Jellyfin's OpenAPI description, "openapi.json". Please update that * file with a newer file if needed instead of manually updating the files. */ #ifndef JELLYFIN_DTO_TIMERINFODTO_H #define JELLYFIN_DTO_TIMERINFODTO_H #include #include #include #include #include #include #include #include #include #include "JellyfinQt/DTO/baseitemdto.h" #include "JellyfinQt/DTO/keepuntil.h" #include "JellyfinQt/DTO/recordingstatus.h" #include "JellyfinQt/support/jsonconv.h" namespace Jellyfin { namespace DTO { class TimerInfoDto { public:TimerInfoDto();TimerInfoDto(const TimerInfoDto &other); static TimerInfoDto fromJson(QJsonObject source); void setFromJson(QJsonObject source); QJsonObject toJson(); // Properties /** * @brief Id of the recording. */ QString jellyfinId() const; /** * @brief Id of the recording. */ void setJellyfinId(QString newJellyfinId); QString type() const; void setType(QString newType); /** * @brief Gets or sets the server identifier. */ QString serverId() const; /** * @brief Gets or sets the server identifier. */ void setServerId(QString newServerId); /** * @brief Gets or sets the external identifier. */ QString externalId() const; /** * @brief Gets or sets the external identifier. */ void setExternalId(QString newExternalId); /** * @brief ChannelId of the recording. */ QUuid channelId() const; /** * @brief ChannelId of the recording. */ void setChannelId(QUuid newChannelId); /** * @brief Gets or sets the external channel identifier. */ QString externalChannelId() const; /** * @brief Gets or sets the external channel identifier. */ void setExternalChannelId(QString newExternalChannelId); /** * @brief ChannelName of the recording. */ QString channelName() const; /** * @brief ChannelName of the recording. */ void setChannelName(QString newChannelName); QString channelPrimaryImageTag() const; void setChannelPrimaryImageTag(QString newChannelPrimaryImageTag); /** * @brief Gets or sets the program identifier. */ QString programId() const; /** * @brief Gets or sets the program identifier. */ void setProgramId(QString newProgramId); /** * @brief Gets or sets the external program identifier. */ QString externalProgramId() const; /** * @brief Gets or sets the external program identifier. */ void setExternalProgramId(QString newExternalProgramId); /** * @brief Name of the recording. */ QString name() const; /** * @brief Name of the recording. */ void setName(QString newName); /** * @brief Description of the recording. */ QString overview() const; /** * @brief Description of the recording. */ void setOverview(QString newOverview); /** * @brief The start date of the recording, in UTC. */ QDateTime startDate() const; /** * @brief The start date of the recording, in UTC. */ void setStartDate(QDateTime newStartDate); /** * @brief The end date of the recording, in UTC. */ QDateTime endDate() const; /** * @brief The end date of the recording, in UTC. */ void setEndDate(QDateTime newEndDate); /** * @brief Gets or sets the name of the service. */ QString serviceName() const; /** * @brief Gets or sets the name of the service. */ void setServiceName(QString newServiceName); /** * @brief Gets or sets the priority. */ qint32 priority() const; /** * @brief Gets or sets the priority. */ void setPriority(qint32 newPriority); /** * @brief Gets or sets the pre padding seconds. */ qint32 prePaddingSeconds() const; /** * @brief Gets or sets the pre padding seconds. */ void setPrePaddingSeconds(qint32 newPrePaddingSeconds); /** * @brief Gets or sets the post padding seconds. */ qint32 postPaddingSeconds() const; /** * @brief Gets or sets the post padding seconds. */ void setPostPaddingSeconds(qint32 newPostPaddingSeconds); /** * @brief Gets or sets a value indicating whether this instance is pre padding required. */ bool isPrePaddingRequired() const; /** * @brief Gets or sets a value indicating whether this instance is pre padding required. */ void setIsPrePaddingRequired(bool newIsPrePaddingRequired); /** * @brief If the item does not have any backdrops, this will hold the Id of the Parent that has one. */ QString parentBackdropItemId() const; /** * @brief If the item does not have any backdrops, this will hold the Id of the Parent that has one. */ void setParentBackdropItemId(QString newParentBackdropItemId); /** * @brief Gets or sets the parent backdrop image tags. */ QStringList parentBackdropImageTags() const; /** * @brief Gets or sets the parent backdrop image tags. */ void setParentBackdropImageTags(QStringList newParentBackdropImageTags); /** * @brief Gets or sets a value indicating whether this instance is post padding required. */ bool isPostPaddingRequired() const; /** * @brief Gets or sets a value indicating whether this instance is post padding required. */ void setIsPostPaddingRequired(bool newIsPostPaddingRequired); KeepUntil keepUntil() const; void setKeepUntil(KeepUntil newKeepUntil); RecordingStatus status() const; void setStatus(RecordingStatus newStatus); /** * @brief Gets or sets the series timer identifier. */ QString seriesTimerId() const; /** * @brief Gets or sets the series timer identifier. */ void setSeriesTimerId(QString newSeriesTimerId); /** * @brief Gets or sets the external series timer identifier. */ QString externalSeriesTimerId() const; /** * @brief Gets or sets the external series timer identifier. */ void setExternalSeriesTimerId(QString newExternalSeriesTimerId); /** * @brief Gets or sets the run time ticks. */ qint64 runTimeTicks() const; /** * @brief Gets or sets the run time ticks. */ void setRunTimeTicks(qint64 newRunTimeTicks); QSharedPointer programInfo() const; void setProgramInfo(QSharedPointer newProgramInfo); protected: QString m_jellyfinId; QString m_type; QString m_serverId; QString m_externalId; QUuid m_channelId; QString m_externalChannelId; QString m_channelName; QString m_channelPrimaryImageTag; QString m_programId; QString m_externalProgramId; QString m_name; QString m_overview; QDateTime m_startDate; QDateTime m_endDate; QString m_serviceName; qint32 m_priority; qint32 m_prePaddingSeconds; qint32 m_postPaddingSeconds; bool m_isPrePaddingRequired; QString m_parentBackdropItemId; QStringList m_parentBackdropImageTags; bool m_isPostPaddingRequired; KeepUntil m_keepUntil; RecordingStatus m_status; QString m_seriesTimerId; QString m_externalSeriesTimerId; qint64 m_runTimeTicks; QSharedPointer m_programInfo = nullptr; }; } // NS Jellyfin } // NS DTO #endif // JELLYFIN_DTO_TIMERINFODTO_H