/** * 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 { CalendarAttributesSchema } from './CalendarAttributesSchema'; import type { CalendarRelationshipsSchema } from './CalendarRelationshipsSchema'; /** * * @export * @interface CalendarResourceSchema */ export interface CalendarResourceSchema { /** * * @type {CalendarResourceSchemaTypeEnum} * @memberof CalendarResourceSchema */ type: CalendarResourceSchemaTypeEnum; /** * 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 CalendarResourceSchema */ id: string; /** * * @type {CalendarAttributesSchema} * @memberof CalendarResourceSchema */ attributes: CalendarAttributesSchema; /** * * @type {CalendarRelationshipsSchema} * @memberof CalendarResourceSchema */ relationships?: CalendarRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof CalendarResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof CalendarResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const CalendarResourceSchemaTypeEnum: { readonly Calendars: "calendars"; }; export type CalendarResourceSchemaTypeEnum = typeof CalendarResourceSchemaTypeEnum[keyof typeof CalendarResourceSchemaTypeEnum]; /** * Check if a given object implements the CalendarResourceSchema interface. */ export declare function instanceOfCalendarResourceSchema(value: object): value is CalendarResourceSchema; export declare function CalendarResourceSchemaFromJSON(json: any): CalendarResourceSchema; export declare function CalendarResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CalendarResourceSchema; export declare function CalendarResourceSchemaToJSON(json: any): CalendarResourceSchema; export declare function CalendarResourceSchemaToJSONTyped(value?: CalendarResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CalendarResourceSchema.d.ts.map