/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { AggregateResourceSchema } from './AggregateResourceSchema'; /** * * @export * @interface AggregateSchema */ export interface AggregateSchema { /** * * @type {AggregateResourceSchema} * @memberof AggregateSchema */ data?: AggregateResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof AggregateSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof AggregateSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the AggregateSchema interface. */ export declare function instanceOfAggregateSchema(value: object): value is AggregateSchema; export declare function AggregateSchemaFromJSON(json: any): AggregateSchema; export declare function AggregateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregateSchema; export declare function AggregateSchemaToJSON(json: any): AggregateSchema; export declare function AggregateSchemaToJSONTyped(value?: AggregateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AggregateSchema.d.ts.map