/** * 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 { WorkflowRelationshipsRunsSchemaDataInner } from './WorkflowRelationshipsRunsSchemaDataInner'; /** * * @export * @interface WorkflowRelationshipsRunsSchema */ export interface WorkflowRelationshipsRunsSchema { /** * * @type {Array} * @memberof WorkflowRelationshipsRunsSchema */ data?: Array; } /** * Check if a given object implements the WorkflowRelationshipsRunsSchema interface. */ export declare function instanceOfWorkflowRelationshipsRunsSchema(value: object): value is WorkflowRelationshipsRunsSchema; export declare function WorkflowRelationshipsRunsSchemaFromJSON(json: any): WorkflowRelationshipsRunsSchema; export declare function WorkflowRelationshipsRunsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowRelationshipsRunsSchema; export declare function WorkflowRelationshipsRunsSchemaToJSON(json: any): WorkflowRelationshipsRunsSchema; export declare function WorkflowRelationshipsRunsSchemaToJSONTyped(value?: WorkflowRelationshipsRunsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WorkflowRelationshipsRunsSchema.d.ts.map