/** * 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 RunAttributesSchemaTimestamps */ export interface RunAttributesSchemaTimestamps { /** * When the run record was created (queued) * @type {Date} * @memberof RunAttributesSchemaTimestamps */ created?: Date; /** * When the run record was last modified * @type {Date} * @memberof RunAttributesSchemaTimestamps */ modified?: Date; /** * When the engine began executing the first step * @type {Date} * @memberof RunAttributesSchemaTimestamps */ started?: Date | null; /** * When the last step finished execution * @type {Date} * @memberof RunAttributesSchemaTimestamps */ completed?: Date | null; } /** * Check if a given object implements the RunAttributesSchemaTimestamps interface. */ export declare function instanceOfRunAttributesSchemaTimestamps(value: object): value is RunAttributesSchemaTimestamps; export declare function RunAttributesSchemaTimestampsFromJSON(json: any): RunAttributesSchemaTimestamps; export declare function RunAttributesSchemaTimestampsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RunAttributesSchemaTimestamps; export declare function RunAttributesSchemaTimestampsToJSON(json: any): RunAttributesSchemaTimestamps; export declare function RunAttributesSchemaTimestampsToJSONTyped(value?: RunAttributesSchemaTimestamps | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RunAttributesSchemaTimestamps.d.ts.map