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