/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ProductionReference */ export interface ProductionReference { /** * * @type {number} * @memberof ProductionReference */ id: number; /** * * @type {boolean} * @memberof ProductionReference */ readonly isSpecial?: boolean; /** * * @type {number} * @memberof ProductionReference */ readonly specialType?: number | null; /** * * @type {number} * @memberof ProductionReference */ readonly totalSize?: number | null; /** * * @type {string} * @memberof ProductionReference */ readonly name?: string; /** * * @type {boolean} * @memberof ProductionReference */ readonly obscureName?: boolean; /** * * @type {string} * @memberof ProductionReference */ readonly description?: string | null; /** * * @type {string} * @memberof ProductionReference */ readonly longDescription?: string; /** * * @type {boolean} * @memberof ProductionReference */ readonly active?: boolean; /** * * @type {number} * @memberof ProductionReference */ readonly template?: number | null; /** * * @type {number} * @memberof ProductionReference */ readonly defaultGroup?: number | null; } export declare function ProductionReferenceFromJSON(json: any): ProductionReference; export declare function ProductionReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductionReference; export declare function ProductionReferenceToJSON(value?: ProductionReference | null): any;