/* * 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. */ #include namespace Jellyfin { namespace DTO { LibraryTypeOptionsDto::LibraryTypeOptionsDto() {} LibraryTypeOptionsDto::LibraryTypeOptionsDto(const LibraryTypeOptionsDto &other) : m_type(other.m_type), m_metadataFetchers(other.m_metadataFetchers), m_imageFetchers(other.m_imageFetchers), m_supportedImageTypes(other.m_supportedImageTypes), m_defaultImageOptions(other.m_defaultImageOptions){} void LibraryTypeOptionsDto::replaceData(LibraryTypeOptionsDto &other) { m_type = other.m_type; m_metadataFetchers = other.m_metadataFetchers; m_imageFetchers = other.m_imageFetchers; m_supportedImageTypes = other.m_supportedImageTypes; m_defaultImageOptions = other.m_defaultImageOptions; } LibraryTypeOptionsDto LibraryTypeOptionsDto::fromJson(QJsonObject source) { LibraryTypeOptionsDto instance; instance.setFromJson(source); return instance; } void LibraryTypeOptionsDto::setFromJson(QJsonObject source) { m_type = Jellyfin::Support::fromJsonValue(source["Type"]); m_metadataFetchers = Jellyfin::Support::fromJsonValue>(source["MetadataFetchers"]); m_imageFetchers = Jellyfin::Support::fromJsonValue>(source["ImageFetchers"]); m_supportedImageTypes = Jellyfin::Support::fromJsonValue>(source["SupportedImageTypes"]); m_defaultImageOptions = Jellyfin::Support::fromJsonValue>(source["DefaultImageOptions"]); } QJsonObject LibraryTypeOptionsDto::toJson() const { QJsonObject result; if (!(m_type.isNull())) { result["Type"] = Jellyfin::Support::toJsonValue(m_type); } if (!(m_metadataFetchers.size() == 0)) { result["MetadataFetchers"] = Jellyfin::Support::toJsonValue>(m_metadataFetchers); } if (!(m_imageFetchers.size() == 0)) { result["ImageFetchers"] = Jellyfin::Support::toJsonValue>(m_imageFetchers); } if (!(m_supportedImageTypes.size() == 0)) { result["SupportedImageTypes"] = Jellyfin::Support::toJsonValue>(m_supportedImageTypes); } if (!(m_defaultImageOptions.size() == 0)) { result["DefaultImageOptions"] = Jellyfin::Support::toJsonValue>(m_defaultImageOptions); } return result; } QString LibraryTypeOptionsDto::type() const { return m_type; } void LibraryTypeOptionsDto::setType(QString newType) { m_type = newType; } bool LibraryTypeOptionsDto::typeNull() const { return m_type.isNull(); } void LibraryTypeOptionsDto::setTypeNull() { m_type.clear(); } QList LibraryTypeOptionsDto::metadataFetchers() const { return m_metadataFetchers; } void LibraryTypeOptionsDto::setMetadataFetchers(QList newMetadataFetchers) { m_metadataFetchers = newMetadataFetchers; } bool LibraryTypeOptionsDto::metadataFetchersNull() const { return m_metadataFetchers.size() == 0; } void LibraryTypeOptionsDto::setMetadataFetchersNull() { m_metadataFetchers.clear(); } QList LibraryTypeOptionsDto::imageFetchers() const { return m_imageFetchers; } void LibraryTypeOptionsDto::setImageFetchers(QList newImageFetchers) { m_imageFetchers = newImageFetchers; } bool LibraryTypeOptionsDto::imageFetchersNull() const { return m_imageFetchers.size() == 0; } void LibraryTypeOptionsDto::setImageFetchersNull() { m_imageFetchers.clear(); } QList LibraryTypeOptionsDto::supportedImageTypes() const { return m_supportedImageTypes; } void LibraryTypeOptionsDto::setSupportedImageTypes(QList newSupportedImageTypes) { m_supportedImageTypes = newSupportedImageTypes; } bool LibraryTypeOptionsDto::supportedImageTypesNull() const { return m_supportedImageTypes.size() == 0; } void LibraryTypeOptionsDto::setSupportedImageTypesNull() { m_supportedImageTypes.clear(); } QList LibraryTypeOptionsDto::defaultImageOptions() const { return m_defaultImageOptions; } void LibraryTypeOptionsDto::setDefaultImageOptions(QList newDefaultImageOptions) { m_defaultImageOptions = newDefaultImageOptions; } bool LibraryTypeOptionsDto::defaultImageOptionsNull() const { return m_defaultImageOptions.size() == 0; } void LibraryTypeOptionsDto::setDefaultImageOptionsNull() { m_defaultImageOptions.clear(); } } // NS DTO namespace Support { using LibraryTypeOptionsDto = Jellyfin::DTO::LibraryTypeOptionsDto; template <> LibraryTypeOptionsDto fromJsonValue(const QJsonValue &source, convertType) { if (!source.isObject()) throw ParseException("Expected JSON Object"); return LibraryTypeOptionsDto::fromJson(source.toObject()); } template<> QJsonValue toJsonValue(const LibraryTypeOptionsDto &source, convertType) { return source.toJson(); } } // NS DTO } // NS Jellyfin