/** * 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 { OperationResourceSchema } from './OperationResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface OperationsSchema */ export interface OperationsSchema { /** * * @type {Array} * @memberof OperationsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof OperationsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof OperationsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the OperationsSchema interface. */ export declare function instanceOfOperationsSchema(value: object): value is OperationsSchema; export declare function OperationsSchemaFromJSON(json: any): OperationsSchema; export declare function OperationsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperationsSchema; export declare function OperationsSchemaToJSON(json: any): OperationsSchema; export declare function OperationsSchemaToJSONTyped(value?: OperationsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OperationsSchema.d.ts.map