/** * 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 { MeetingRelationshipsSchema } from './MeetingRelationshipsSchema'; import type { MeetingAttributesSchema } from './MeetingAttributesSchema'; /** * * @export * @interface MeetingResourceSchema */ export interface MeetingResourceSchema { /** * * @type {MeetingResourceSchemaTypeEnum} * @memberof MeetingResourceSchema */ type: MeetingResourceSchemaTypeEnum; /** * 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 MeetingResourceSchema */ id: string; /** * * @type {MeetingAttributesSchema} * @memberof MeetingResourceSchema */ attributes: MeetingAttributesSchema; /** * * @type {MeetingRelationshipsSchema} * @memberof MeetingResourceSchema */ relationships?: MeetingRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof MeetingResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof MeetingResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const MeetingResourceSchemaTypeEnum: { readonly Meetings: "meetings"; }; export type MeetingResourceSchemaTypeEnum = typeof MeetingResourceSchemaTypeEnum[keyof typeof MeetingResourceSchemaTypeEnum]; /** * Check if a given object implements the MeetingResourceSchema interface. */ export declare function instanceOfMeetingResourceSchema(value: object): value is MeetingResourceSchema; export declare function MeetingResourceSchemaFromJSON(json: any): MeetingResourceSchema; export declare function MeetingResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingResourceSchema; export declare function MeetingResourceSchemaToJSON(json: any): MeetingResourceSchema; export declare function MeetingResourceSchemaToJSONTyped(value?: MeetingResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingResourceSchema.d.ts.map