/** * 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 { MeetingLobbyAttributesSchema } from './MeetingLobbyAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface MeetingLobbyResourceSchema */ export interface MeetingLobbyResourceSchema { /** * * @type {MeetingLobbyResourceSchemaTypeEnum} * @memberof MeetingLobbyResourceSchema */ type: MeetingLobbyResourceSchemaTypeEnum; /** * 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 MeetingLobbyResourceSchema */ id: string; /** * * @type {MeetingLobbyAttributesSchema} * @memberof MeetingLobbyResourceSchema */ attributes: MeetingLobbyAttributesSchema; /** * * @type {object} * @memberof MeetingLobbyResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof MeetingLobbyResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof MeetingLobbyResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const MeetingLobbyResourceSchemaTypeEnum: { readonly Meetings: "meetings"; }; export type MeetingLobbyResourceSchemaTypeEnum = typeof MeetingLobbyResourceSchemaTypeEnum[keyof typeof MeetingLobbyResourceSchemaTypeEnum]; /** * Check if a given object implements the MeetingLobbyResourceSchema interface. */ export declare function instanceOfMeetingLobbyResourceSchema(value: object): value is MeetingLobbyResourceSchema; export declare function MeetingLobbyResourceSchemaFromJSON(json: any): MeetingLobbyResourceSchema; export declare function MeetingLobbyResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingLobbyResourceSchema; export declare function MeetingLobbyResourceSchemaToJSON(json: any): MeetingLobbyResourceSchema; export declare function MeetingLobbyResourceSchemaToJSONTyped(value?: MeetingLobbyResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingLobbyResourceSchema.d.ts.map