/** * 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 { AggregateAttributesSchema } from './AggregateAttributesSchema'; /** * * @export * @interface AggregateResourceSchema */ export interface AggregateResourceSchema { /** * * @type {AggregateResourceSchemaTypeEnum} * @memberof AggregateResourceSchema */ type: AggregateResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof AggregateResourceSchema */ id: string; /** * * @type {AggregateAttributesSchema} * @memberof AggregateResourceSchema */ attributes: AggregateAttributesSchema; /** * * @type {object} * @memberof AggregateResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof AggregateResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof AggregateResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const AggregateResourceSchemaTypeEnum: { readonly Aggregates: "aggregates"; }; export type AggregateResourceSchemaTypeEnum = typeof AggregateResourceSchemaTypeEnum[keyof typeof AggregateResourceSchemaTypeEnum]; /** * Check if a given object implements the AggregateResourceSchema interface. */ export declare function instanceOfAggregateResourceSchema(value: object): value is AggregateResourceSchema; export declare function AggregateResourceSchemaFromJSON(json: any): AggregateResourceSchema; export declare function AggregateResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregateResourceSchema; export declare function AggregateResourceSchemaToJSON(json: any): AggregateResourceSchema; export declare function AggregateResourceSchemaToJSONTyped(value?: AggregateResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AggregateResourceSchema.d.ts.map