/** * 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. */ import type { WorkflowAttributesSchemaTimestamps } from './WorkflowAttributesSchemaTimestamps'; /** * * @export * @interface WorkflowAttributesSchema */ export interface WorkflowAttributesSchema { /** * Machine name, e.g. create_job_from_brief * @type {string} * @memberof WorkflowAttributesSchema */ name?: string; /** * * @type {string} * @memberof WorkflowAttributesSchema */ description?: string; /** * * @type {number} * @memberof WorkflowAttributesSchema */ version?: number; /** * * @type {string} * @memberof WorkflowAttributesSchema */ status?: string; /** * * @type {string} * @memberof WorkflowAttributesSchema */ category?: string; /** * JSON string of the step definitions as provisioned from the manifest (stored stringified, served verbatim) * @type {string} * @memberof WorkflowAttributesSchema */ steps?: string; /** * Input requirements schema for starting a run * @type {object} * @memberof WorkflowAttributesSchema */ requirements?: object; /** * * @type {WorkflowAttributesSchemaTimestamps} * @memberof WorkflowAttributesSchema */ timestamps?: WorkflowAttributesSchemaTimestamps; } /** * Check if a given object implements the WorkflowAttributesSchema interface. */ export declare function instanceOfWorkflowAttributesSchema(value: object): value is WorkflowAttributesSchema; export declare function WorkflowAttributesSchemaFromJSON(json: any): WorkflowAttributesSchema; export declare function WorkflowAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowAttributesSchema; export declare function WorkflowAttributesSchemaToJSON(json: any): WorkflowAttributesSchema; export declare function WorkflowAttributesSchemaToJSONTyped(value?: WorkflowAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WorkflowAttributesSchema.d.ts.map