/** * 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 SubtaskPartialUpdate */ export interface SubtaskPartialUpdate { /** * * @type {{ [key: string]: string | undefined; }} * @memberof SubtaskPartialUpdate */ kwargs?: { [key: string]: string | undefined; }; /** * * @type {{ [key: string]: string | undefined; }} * @memberof SubtaskPartialUpdate */ graphLayout?: { [key: string]: string | undefined; }; /** * * @type {string} * @memberof SubtaskPartialUpdate */ trigger?: string | null; /** * * @type {string} * @memberof SubtaskPartialUpdate */ name?: string | null; /** * * @type {boolean} * @memberof SubtaskPartialUpdate */ noopDontSave?: boolean; /** * * @type {boolean} * @memberof SubtaskPartialUpdate */ noConcurrency?: boolean; /** * * @type {number} * @memberof SubtaskPartialUpdate */ timeout?: number | null; /** * * @type {boolean} * @memberof SubtaskPartialUpdate */ logVariable?: boolean; /** * * @type {string} * @memberof SubtaskPartialUpdate */ task?: string | null; /** * * @type {string} * @memberof SubtaskPartialUpdate */ conditionVariable?: string | null; /** * * @type {string} * @memberof SubtaskPartialUpdate */ conditionValue?: string | null; /** * * @type {boolean} * @memberof SubtaskPartialUpdate */ sync?: boolean; /** * * @type {string} * @memberof SubtaskPartialUpdate */ queue?: string | null; /** * * @type {boolean} * @memberof SubtaskPartialUpdate */ enqueueAtFront?: boolean; /** * * @type {number} * @memberof SubtaskPartialUpdate */ parent?: number; /** * * @type {number} * @memberof SubtaskPartialUpdate */ relativeTo?: number | null; } export declare function SubtaskPartialUpdateFromJSON(json: any): SubtaskPartialUpdate; export declare function SubtaskPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubtaskPartialUpdate; export declare function SubtaskPartialUpdateToJSON(value?: SubtaskPartialUpdate | null): any;