/** * 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 { GuestMeetingAttendeeAttributesSchema } from './GuestMeetingAttendeeAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface GuestMeetingAttendeeResourceSchema */ export interface GuestMeetingAttendeeResourceSchema { /** * * @type {GuestMeetingAttendeeResourceSchemaTypeEnum} * @memberof GuestMeetingAttendeeResourceSchema */ type: GuestMeetingAttendeeResourceSchemaTypeEnum; /** * 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 GuestMeetingAttendeeResourceSchema */ id: string; /** * * @type {GuestMeetingAttendeeAttributesSchema} * @memberof GuestMeetingAttendeeResourceSchema */ attributes: GuestMeetingAttendeeAttributesSchema; /** * * @type {object} * @memberof GuestMeetingAttendeeResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof GuestMeetingAttendeeResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof GuestMeetingAttendeeResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const GuestMeetingAttendeeResourceSchemaTypeEnum: { readonly Attendees: "attendees"; }; export type GuestMeetingAttendeeResourceSchemaTypeEnum = typeof GuestMeetingAttendeeResourceSchemaTypeEnum[keyof typeof GuestMeetingAttendeeResourceSchemaTypeEnum]; /** * Check if a given object implements the GuestMeetingAttendeeResourceSchema interface. */ export declare function instanceOfGuestMeetingAttendeeResourceSchema(value: object): value is GuestMeetingAttendeeResourceSchema; export declare function GuestMeetingAttendeeResourceSchemaFromJSON(json: any): GuestMeetingAttendeeResourceSchema; export declare function GuestMeetingAttendeeResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestMeetingAttendeeResourceSchema; export declare function GuestMeetingAttendeeResourceSchemaToJSON(json: any): GuestMeetingAttendeeResourceSchema; export declare function GuestMeetingAttendeeResourceSchemaToJSONTyped(value?: GuestMeetingAttendeeResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestMeetingAttendeeResourceSchema.d.ts.map