/** * 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 { RunRelationshipsWorkflowSchemaData } from './RunRelationshipsWorkflowSchemaData'; /** * * @export * @interface RunRelationshipsWorkflowSchema */ export interface RunRelationshipsWorkflowSchema { /** * * @type {RunRelationshipsWorkflowSchemaData} * @memberof RunRelationshipsWorkflowSchema */ data?: RunRelationshipsWorkflowSchemaData | null; } /** * Check if a given object implements the RunRelationshipsWorkflowSchema interface. */ export declare function instanceOfRunRelationshipsWorkflowSchema(value: object): value is RunRelationshipsWorkflowSchema; export declare function RunRelationshipsWorkflowSchemaFromJSON(json: any): RunRelationshipsWorkflowSchema; export declare function RunRelationshipsWorkflowSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RunRelationshipsWorkflowSchema; export declare function RunRelationshipsWorkflowSchemaToJSON(json: any): RunRelationshipsWorkflowSchema; export declare function RunRelationshipsWorkflowSchemaToJSONTyped(value?: RunRelationshipsWorkflowSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RunRelationshipsWorkflowSchema.d.ts.map