30#ifndef JELLYFIN_DTO_LOGFILE_H
31#define JELLYFIN_DTO_LOGFILE_H
67 QJsonObject
toJson()
const;
100 QString
name()
const;
An Api client for Jellyfin. Handles requests and authentication.
Definition apiclient.h:90
qint64 size() const
Gets or sets the size.
Definition logfile.cpp:101
void setDateCreated(QDateTime newDateCreated)
Gets or sets the date created.
Definition logfile.cpp:91
void setFromJson(QJsonObject source)
Definition logfile.cpp:71
QDateTime dateModified() const
Gets or sets the date modified.
Definition logfile.cpp:95
LogFile(QDateTime dateCreated, QDateTime dateModified, qint64 size, QString name)
Definition logfile.cpp:36
QString name() const
Gets or sets the name.
Definition logfile.cpp:107
QDateTime dateCreated() const
Gets or sets the date created.
Definition logfile.cpp:89
void setName(QString newName)
Gets or sets the name.
Definition logfile.cpp:109
void setSize(qint64 newSize)
Gets or sets the size.
Definition logfile.cpp:103
void setDateModified(QDateTime newDateModified)
Gets or sets the date modified.
Definition logfile.cpp:97
qint64 m_size
Definition logfile.h:110
QDateTime m_dateModified
Definition logfile.h:109
QDateTime m_dateCreated
Definition logfile.h:108
QString m_name
Definition logfile.h:111
static LogFile fromJson(QJsonObject source)
Definition logfile.cpp:64
QJsonObject toJson() const
Definition logfile.cpp:79
void replaceData(LogFile &other)
Definition logfile.cpp:57
Contains auto-generated Data Transfer Objects for the Jellyfin HTTP API.
Definition accessschedule.h:128
Jellyfin::DTO::LogFile LogFile
Definition logfile.h:123
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