/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; import type { WorkflowResourceSchema } from './WorkflowResourceSchema'; /** * * @export * @interface WorkflowsSchema */ export interface WorkflowsSchema { /** * * @type {Array} * @memberof WorkflowsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof WorkflowsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof WorkflowsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the WorkflowsSchema interface. */ export declare function instanceOfWorkflowsSchema(value: object): value is WorkflowsSchema; export declare function WorkflowsSchemaFromJSON(json: any): WorkflowsSchema; export declare function WorkflowsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowsSchema; export declare function WorkflowsSchemaToJSON(json: any): WorkflowsSchema; export declare function WorkflowsSchemaToJSONTyped(value?: WorkflowsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WorkflowsSchema.d.ts.map