/** * 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 { AggregatesMetaSchema } from './AggregatesMetaSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; import type { AggregateResourceSchema } from './AggregateResourceSchema'; /** * * @export * @interface AggregatesSchema */ export interface AggregatesSchema { /** * * @type {Array} * @memberof AggregatesSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof AggregatesSchema */ links?: ResourcesLinksSchema; /** * * @type {AggregatesMetaSchema} * @memberof AggregatesSchema */ meta?: AggregatesMetaSchema; } /** * Check if a given object implements the AggregatesSchema interface. */ export declare function instanceOfAggregatesSchema(value: object): value is AggregatesSchema; export declare function AggregatesSchemaFromJSON(json: any): AggregatesSchema; export declare function AggregatesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregatesSchema; export declare function AggregatesSchemaToJSON(json: any): AggregatesSchema; export declare function AggregatesSchemaToJSONTyped(value?: AggregatesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AggregatesSchema.d.ts.map