/** * 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 { MeetingAttendeeAttributesSchema } from './MeetingAttendeeAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { MeetingAttendeeRelationshipsSchema } from './MeetingAttendeeRelationshipsSchema'; /** * * @export * @interface MeetingAttendeeResourceSchema */ export interface MeetingAttendeeResourceSchema { /** * * @type {MeetingAttendeeResourceSchemaTypeEnum} * @memberof MeetingAttendeeResourceSchema */ type: MeetingAttendeeResourceSchemaTypeEnum; /** * 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 MeetingAttendeeResourceSchema */ id: string; /** * * @type {MeetingAttendeeAttributesSchema} * @memberof MeetingAttendeeResourceSchema */ attributes: MeetingAttendeeAttributesSchema; /** * * @type {MeetingAttendeeRelationshipsSchema} * @memberof MeetingAttendeeResourceSchema */ relationships?: MeetingAttendeeRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof MeetingAttendeeResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof MeetingAttendeeResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const MeetingAttendeeResourceSchemaTypeEnum: { readonly Attendees: "attendees"; }; export type MeetingAttendeeResourceSchemaTypeEnum = typeof MeetingAttendeeResourceSchemaTypeEnum[keyof typeof MeetingAttendeeResourceSchemaTypeEnum]; /** * Check if a given object implements the MeetingAttendeeResourceSchema interface. */ export declare function instanceOfMeetingAttendeeResourceSchema(value: object): value is MeetingAttendeeResourceSchema; export declare function MeetingAttendeeResourceSchemaFromJSON(json: any): MeetingAttendeeResourceSchema; export declare function MeetingAttendeeResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAttendeeResourceSchema; export declare function MeetingAttendeeResourceSchemaToJSON(json: any): MeetingAttendeeResourceSchema; export declare function MeetingAttendeeResourceSchemaToJSONTyped(value?: MeetingAttendeeResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAttendeeResourceSchema.d.ts.map