/** * 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 { WorkflowRelationshipsTriggersSchema } from './WorkflowRelationshipsTriggersSchema'; import type { WorkflowRelationshipsRunsSchema } from './WorkflowRelationshipsRunsSchema'; /** * * @export * @interface WorkflowRelationshipsSchema */ export interface WorkflowRelationshipsSchema { /** * * @type {WorkflowRelationshipsTriggersSchema} * @memberof WorkflowRelationshipsSchema */ triggers?: WorkflowRelationshipsTriggersSchema; /** * * @type {WorkflowRelationshipsRunsSchema} * @memberof WorkflowRelationshipsSchema */ runs?: WorkflowRelationshipsRunsSchema; } /** * Check if a given object implements the WorkflowRelationshipsSchema interface. */ export declare function instanceOfWorkflowRelationshipsSchema(value: object): value is WorkflowRelationshipsSchema; export declare function WorkflowRelationshipsSchemaFromJSON(json: any): WorkflowRelationshipsSchema; export declare function WorkflowRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowRelationshipsSchema; export declare function WorkflowRelationshipsSchemaToJSON(json: any): WorkflowRelationshipsSchema; export declare function WorkflowRelationshipsSchemaToJSONTyped(value?: WorkflowRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WorkflowRelationshipsSchema.d.ts.map