/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit the class manually.
 *
 * Jellyfin API
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
/**
 *
 * @export
 * @interface SeriesInfo
 */
export interface SeriesInfo {
    /**
     * Gets or sets the name.
     * @type {string}
     * @memberof SeriesInfo
     */
    'Name'?: string | null;
    /**
     * Gets or sets the original title.
     * @type {string}
     * @memberof SeriesInfo
     */
    'OriginalTitle'?: string | null;
    /**
     * Gets or sets the path.
     * @type {string}
     * @memberof SeriesInfo
     */
    'Path'?: string | null;
    /**
     * Gets or sets the metadata language.
     * @type {string}
     * @memberof SeriesInfo
     */
    'MetadataLanguage'?: string | null;
    /**
     * Gets or sets the metadata country code.
     * @type {string}
     * @memberof SeriesInfo
     */
    'MetadataCountryCode'?: string | null;
    /**
     * Gets or sets the provider ids.
     * @type {{ [key: string]: string | null; }}
     * @memberof SeriesInfo
     */
    'ProviderIds'?: {
        [key: string]: string | null;
    } | null;
    /**
     * Gets or sets the year.
     * @type {number}
     * @memberof SeriesInfo
     */
    'Year'?: number | null;
    /**
     *
     * @type {number}
     * @memberof SeriesInfo
     */
    'IndexNumber'?: number | null;
    /**
     *
     * @type {number}
     * @memberof SeriesInfo
     */
    'ParentIndexNumber'?: number | null;
    /**
     *
     * @type {string}
     * @memberof SeriesInfo
     */
    'PremiereDate'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof SeriesInfo
     */
    'IsAutomated'?: boolean;
}
