/** * 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 TriggerAttributesSchema */ export interface TriggerAttributesSchema { /** * * @type {string} * @memberof TriggerAttributesSchema */ name?: string; /** * e.g. event - what fires this trigger * @type {string} * @memberof TriggerAttributesSchema */ triggerType?: string; /** * JSON string of the trigger configuration (eventType, filters over attributes.) - stored stringified, served verbatim * @type {string} * @memberof TriggerAttributesSchema */ config?: string; /** * * @type {string} * @memberof TriggerAttributesSchema */ status?: string; /** * * @type {WorkflowAttributesSchemaTimestamps} * @memberof TriggerAttributesSchema */ timestamps?: WorkflowAttributesSchemaTimestamps; } /** * Check if a given object implements the TriggerAttributesSchema interface. */ export declare function instanceOfTriggerAttributesSchema(value: object): value is TriggerAttributesSchema; export declare function TriggerAttributesSchemaFromJSON(json: any): TriggerAttributesSchema; export declare function TriggerAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerAttributesSchema; export declare function TriggerAttributesSchemaToJSON(json: any): TriggerAttributesSchema; export declare function TriggerAttributesSchemaToJSONTyped(value?: TriggerAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TriggerAttributesSchema.d.ts.map