/** * 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 { MeetingAiSessionAttributesSchema } from './MeetingAiSessionAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { MeetingAiSessionResourceSchemaAllOfRelationships } from './MeetingAiSessionResourceSchemaAllOfRelationships'; /** * * @export * @interface MeetingAiSessionResourceSchema */ export interface MeetingAiSessionResourceSchema { /** * * @type {MeetingAiSessionResourceSchemaTypeEnum} * @memberof MeetingAiSessionResourceSchema */ type: MeetingAiSessionResourceSchemaTypeEnum; /** * 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 MeetingAiSessionResourceSchema */ id: string; /** * * @type {MeetingAiSessionAttributesSchema} * @memberof MeetingAiSessionResourceSchema */ attributes: MeetingAiSessionAttributesSchema; /** * * @type {MeetingAiSessionResourceSchemaAllOfRelationships} * @memberof MeetingAiSessionResourceSchema */ relationships?: MeetingAiSessionResourceSchemaAllOfRelationships; /** * * @type {ResourceLinksSchema} * @memberof MeetingAiSessionResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof MeetingAiSessionResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const MeetingAiSessionResourceSchemaTypeEnum: { readonly AiSessions: "ai-sessions"; }; export type MeetingAiSessionResourceSchemaTypeEnum = typeof MeetingAiSessionResourceSchemaTypeEnum[keyof typeof MeetingAiSessionResourceSchemaTypeEnum]; /** * Check if a given object implements the MeetingAiSessionResourceSchema interface. */ export declare function instanceOfMeetingAiSessionResourceSchema(value: object): value is MeetingAiSessionResourceSchema; export declare function MeetingAiSessionResourceSchemaFromJSON(json: any): MeetingAiSessionResourceSchema; export declare function MeetingAiSessionResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAiSessionResourceSchema; export declare function MeetingAiSessionResourceSchemaToJSON(json: any): MeetingAiSessionResourceSchema; export declare function MeetingAiSessionResourceSchemaToJSONTyped(value?: MeetingAiSessionResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAiSessionResourceSchema.d.ts.map