/** * 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 { GuestResponseResourceSchema } from './GuestResponseResourceSchema'; /** * Recipient-facing view. Built from an explicit allowlist, not from * the stored row: no `meta` (it holds the accessToken), no * candidateId / jobId, no surveyId / surveyVersion, no results, no * relationships and no links. Adding a field here exposes it to * anyone holding the emailed link, so treat this schema as a * security boundary rather than a convenience shape. * @export * @interface GuestResponseSchema */ export interface GuestResponseSchema { /** * * @type {GuestResponseResourceSchema} * @memberof GuestResponseSchema */ data?: GuestResponseResourceSchema; } /** * Check if a given object implements the GuestResponseSchema interface. */ export declare function instanceOfGuestResponseSchema(value: object): value is GuestResponseSchema; export declare function GuestResponseSchemaFromJSON(json: any): GuestResponseSchema; export declare function GuestResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestResponseSchema; export declare function GuestResponseSchemaToJSON(json: any): GuestResponseSchema; export declare function GuestResponseSchemaToJSONTyped(value?: GuestResponseSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestResponseSchema.d.ts.map