/** * 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 { ScheduleRelationshipsSchema } from './ScheduleRelationshipsSchema'; import type { ScheduleAttributesSchema } from './ScheduleAttributesSchema'; /** * * @export * @interface ScheduleResourceSchema */ export interface ScheduleResourceSchema { /** * * @type {ScheduleResourceSchemaTypeEnum} * @memberof ScheduleResourceSchema */ type: ScheduleResourceSchemaTypeEnum; /** * 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 ScheduleResourceSchema */ id: string; /** * * @type {ScheduleAttributesSchema} * @memberof ScheduleResourceSchema */ attributes: ScheduleAttributesSchema; /** * * @type {ScheduleRelationshipsSchema} * @memberof ScheduleResourceSchema */ relationships?: ScheduleRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof ScheduleResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ScheduleResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const ScheduleResourceSchemaTypeEnum: { readonly Schedules: "schedules"; }; export type ScheduleResourceSchemaTypeEnum = typeof ScheduleResourceSchemaTypeEnum[keyof typeof ScheduleResourceSchemaTypeEnum]; /** * Check if a given object implements the ScheduleResourceSchema interface. */ export declare function instanceOfScheduleResourceSchema(value: object): value is ScheduleResourceSchema; export declare function ScheduleResourceSchemaFromJSON(json: any): ScheduleResourceSchema; export declare function ScheduleResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleResourceSchema; export declare function ScheduleResourceSchemaToJSON(json: any): ScheduleResourceSchema; export declare function ScheduleResourceSchemaToJSONTyped(value?: ScheduleResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ScheduleResourceSchema.d.ts.map