/** * 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 { EventAttributesSchema } from './EventAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { EventRelationshipsSchema } from './EventRelationshipsSchema'; /** * * @export * @interface EventResourceSchema */ export interface EventResourceSchema { /** * * @type {EventResourceSchemaTypeEnum} * @memberof EventResourceSchema */ type: EventResourceSchemaTypeEnum; /** * 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 EventResourceSchema */ id: string; /** * * @type {EventAttributesSchema} * @memberof EventResourceSchema */ attributes: EventAttributesSchema; /** * * @type {EventRelationshipsSchema} * @memberof EventResourceSchema */ relationships?: EventRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof EventResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof EventResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const EventResourceSchemaTypeEnum: { readonly Events: "events"; }; export type EventResourceSchemaTypeEnum = typeof EventResourceSchemaTypeEnum[keyof typeof EventResourceSchemaTypeEnum]; /** * Check if a given object implements the EventResourceSchema interface. */ export declare function instanceOfEventResourceSchema(value: object): value is EventResourceSchema; export declare function EventResourceSchemaFromJSON(json: any): EventResourceSchema; export declare function EventResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventResourceSchema; export declare function EventResourceSchemaToJSON(json: any): EventResourceSchema; export declare function EventResourceSchemaToJSONTyped(value?: EventResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventResourceSchema.d.ts.map