1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-07-04 22:13:52 +00:00
harbour-sailfin/core/include/JellyfinQt/DTO/openlivestreamdto.h
2021-03-24 20:04:03 +01:00

179 lines
4.9 KiB
C++

/*
* 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_OPENLIVESTREAMDTO_H
#define JELLYFIN_DTO_OPENLIVESTREAMDTO_H
#include <QJsonObject>
#include <QJsonValue>
#include <QList>
#include <QSharedPointer>
#include <QString>
#include <QStringList>
#include <QUuid>
#include <optional>
#include "JellyfinQt/DTO/deviceprofile.h"
#include "JellyfinQt/DTO/mediaprotocol.h"
#include "JellyfinQt/support/jsonconv.h"
namespace Jellyfin {
namespace DTO {
class OpenLiveStreamDto {
public:OpenLiveStreamDto();OpenLiveStreamDto(const OpenLiveStreamDto &other);
static OpenLiveStreamDto fromJson(QJsonObject source);
void setFromJson(QJsonObject source);
QJsonObject toJson();
// Properties
/**
* @brief Gets or sets the open token.
*/
QString openToken() const;
/**
* @brief Gets or sets the open token.
*/
void setOpenToken(QString newOpenToken);
/**
* @brief Gets or sets the user id.
*/
QUuid userId() const;
/**
* @brief Gets or sets the user id.
*/
void setUserId(QUuid newUserId);
/**
* @brief Gets or sets the play session id.
*/
QString playSessionId() const;
/**
* @brief Gets or sets the play session id.
*/
void setPlaySessionId(QString newPlaySessionId);
/**
* @brief Gets or sets the max streaming bitrate.
*/
qint32 maxStreamingBitrate() const;
/**
* @brief Gets or sets the max streaming bitrate.
*/
void setMaxStreamingBitrate(qint32 newMaxStreamingBitrate);
/**
* @brief Gets or sets the start time in ticks.
*/
qint64 startTimeTicks() const;
/**
* @brief Gets or sets the start time in ticks.
*/
void setStartTimeTicks(qint64 newStartTimeTicks);
/**
* @brief Gets or sets the audio stream index.
*/
qint32 audioStreamIndex() const;
/**
* @brief Gets or sets the audio stream index.
*/
void setAudioStreamIndex(qint32 newAudioStreamIndex);
/**
* @brief Gets or sets the subtitle stream index.
*/
qint32 subtitleStreamIndex() const;
/**
* @brief Gets or sets the subtitle stream index.
*/
void setSubtitleStreamIndex(qint32 newSubtitleStreamIndex);
/**
* @brief Gets or sets the max audio channels.
*/
qint32 maxAudioChannels() const;
/**
* @brief Gets or sets the max audio channels.
*/
void setMaxAudioChannels(qint32 newMaxAudioChannels);
/**
* @brief Gets or sets the item id.
*/
QUuid itemId() const;
/**
* @brief Gets or sets the item id.
*/
void setItemId(QUuid newItemId);
/**
* @brief Gets or sets a value indicating whether to enable direct play.
*/
bool enableDirectPlay() const;
/**
* @brief Gets or sets a value indicating whether to enable direct play.
*/
void setEnableDirectPlay(bool newEnableDirectPlay);
/**
* @brief Gets or sets a value indicating whether to enale direct stream.
*/
bool enableDirectStream() const;
/**
* @brief Gets or sets a value indicating whether to enale direct stream.
*/
void setEnableDirectStream(bool newEnableDirectStream);
QSharedPointer<DeviceProfile> deviceProfile() const;
void setDeviceProfile(QSharedPointer<DeviceProfile> newDeviceProfile);
/**
* @brief Gets or sets the device play protocols.
*/
QList<MediaProtocol> directPlayProtocols() const;
/**
* @brief Gets or sets the device play protocols.
*/
void setDirectPlayProtocols(QList<MediaProtocol> newDirectPlayProtocols);
protected:
QString m_openToken;
QUuid m_userId;
QString m_playSessionId;
qint32 m_maxStreamingBitrate;
qint64 m_startTimeTicks;
qint32 m_audioStreamIndex;
qint32 m_subtitleStreamIndex;
qint32 m_maxAudioChannels;
QUuid m_itemId;
bool m_enableDirectPlay;
bool m_enableDirectStream;
QSharedPointer<DeviceProfile> m_deviceProfile = nullptr;
QList<MediaProtocol> m_directPlayProtocols;
};
} // NS Jellyfin
} // NS DTO
#endif // JELLYFIN_DTO_OPENLIVESTREAMDTO_H