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