/** * 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 ProductionUpdate */ export interface ProductionUpdate { /** * * @type {string} * @memberof ProductionUpdate */ name: string; /** * * @type {boolean} * @memberof ProductionUpdate */ obscureName?: boolean; /** * * @type {string} * @memberof ProductionUpdate */ description?: string | null; /** * * @type {string} * @memberof ProductionUpdate */ longDescription?: string; /** * * @type {boolean} * @memberof ProductionUpdate */ active?: boolean; /** * * @type {number} * @memberof ProductionUpdate */ template?: number | null; /** * * @type {number} * @memberof ProductionUpdate */ defaultGroup?: number | null; } export declare function ProductionUpdateFromJSON(json: any): ProductionUpdate; export declare function ProductionUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductionUpdate; export declare function ProductionUpdateToJSON(value?: ProductionUpdate | null): any;