/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 UpdateRunAttributesSchema */ export interface UpdateRunAttributesSchema { /** * Target status. 'running' redrives a failed/paused/completed run; 'aborted' cancels a pending/running run. * @type {UpdateRunAttributesSchemaStatusEnum} * @memberof UpdateRunAttributesSchema */ status: UpdateRunAttributesSchemaStatusEnum; /** * Only valid when status=running. Zero-based index of the step to redrive from. All step results from this index onwards are discarded. If omitted, resumes from the last failed/paused step (legacy behavior). * @type {number} * @memberof UpdateRunAttributesSchema */ fromStep?: number; } /** * @export */ export declare const UpdateRunAttributesSchemaStatusEnum: { readonly Running: "running"; readonly Aborted: "aborted"; }; export type UpdateRunAttributesSchemaStatusEnum = typeof UpdateRunAttributesSchemaStatusEnum[keyof typeof UpdateRunAttributesSchemaStatusEnum]; /** * Check if a given object implements the UpdateRunAttributesSchema interface. */ export declare function instanceOfUpdateRunAttributesSchema(value: object): value is UpdateRunAttributesSchema; export declare function UpdateRunAttributesSchemaFromJSON(json: any): UpdateRunAttributesSchema; export declare function UpdateRunAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateRunAttributesSchema; export declare function UpdateRunAttributesSchemaToJSON(json: any): UpdateRunAttributesSchema; export declare function UpdateRunAttributesSchemaToJSONTyped(value?: UpdateRunAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateRunAttributesSchema.d.ts.map