/** * 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 { RunRelationshipsTriggerSchema } from './RunRelationshipsTriggerSchema'; import type { RunRelationshipsWorkflowSchema } from './RunRelationshipsWorkflowSchema'; /** * Relationships are to-one (JSON:API). Keys are singular (workflow, trigger) with a single-object data. * @export * @interface RunRelationshipsSchema */ export interface RunRelationshipsSchema { /** * * @type {RunRelationshipsWorkflowSchema} * @memberof RunRelationshipsSchema */ workflow?: RunRelationshipsWorkflowSchema; /** * * @type {RunRelationshipsTriggerSchema} * @memberof RunRelationshipsSchema */ trigger?: RunRelationshipsTriggerSchema; } /** * Check if a given object implements the RunRelationshipsSchema interface. */ export declare function instanceOfRunRelationshipsSchema(value: object): value is RunRelationshipsSchema; export declare function RunRelationshipsSchemaFromJSON(json: any): RunRelationshipsSchema; export declare function RunRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RunRelationshipsSchema; export declare function RunRelationshipsSchemaToJSON(json: any): RunRelationshipsSchema; export declare function RunRelationshipsSchemaToJSONTyped(value?: RunRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RunRelationshipsSchema.d.ts.map