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