/** * 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 { GuestResponseAttributesSchema } from './GuestResponseAttributesSchema'; /** * * @export * @interface GuestResponseResourceSchema */ export interface GuestResponseResourceSchema { /** * * @type {GuestResponseResourceSchemaTypeEnum} * @memberof GuestResponseResourceSchema */ type?: GuestResponseResourceSchemaTypeEnum; /** * * @type {string} * @memberof GuestResponseResourceSchema */ id?: string; /** * * @type {GuestResponseAttributesSchema} * @memberof GuestResponseResourceSchema */ attributes?: GuestResponseAttributesSchema; } /** * @export */ export declare const GuestResponseResourceSchemaTypeEnum: { readonly Responses: "responses"; }; export type GuestResponseResourceSchemaTypeEnum = typeof GuestResponseResourceSchemaTypeEnum[keyof typeof GuestResponseResourceSchemaTypeEnum]; /** * Check if a given object implements the GuestResponseResourceSchema interface. */ export declare function instanceOfGuestResponseResourceSchema(value: object): value is GuestResponseResourceSchema; export declare function GuestResponseResourceSchemaFromJSON(json: any): GuestResponseResourceSchema; export declare function GuestResponseResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestResponseResourceSchema; export declare function GuestResponseResourceSchemaToJSON(json: any): GuestResponseResourceSchema; export declare function GuestResponseResourceSchemaToJSONTyped(value?: GuestResponseResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestResponseResourceSchema.d.ts.map