/** * 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 { RunResourceSchema } from './RunResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface RunsSchema */ export interface RunsSchema { /** * * @type {Array} * @memberof RunsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof RunsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof RunsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the RunsSchema interface. */ export declare function instanceOfRunsSchema(value: object): value is RunsSchema; export declare function RunsSchemaFromJSON(json: any): RunsSchema; export declare function RunsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RunsSchema; export declare function RunsSchemaToJSON(json: any): RunsSchema; export declare function RunsSchemaToJSONTyped(value?: RunsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RunsSchema.d.ts.map