/** * 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 { GuestDocumentResourceSchema } from './GuestDocumentResourceSchema'; /** * Recipient-facing view - ONE resource carrying everything the screen * needs (the page holds a credential and must not fan out). Built * from an explicit allowlist plus computed viewer / availableActions * and sanitized participants / activity: no meta (holds the access * tokens), no candidateId / jobId, no contentHash, no participant * emails, no activity evidence meta, no relationships. * @export * @interface GuestDocumentSchema */ export interface GuestDocumentSchema { /** * * @type {GuestDocumentResourceSchema} * @memberof GuestDocumentSchema */ data?: GuestDocumentResourceSchema; } /** * Check if a given object implements the GuestDocumentSchema interface. */ export declare function instanceOfGuestDocumentSchema(value: object): value is GuestDocumentSchema; export declare function GuestDocumentSchemaFromJSON(json: any): GuestDocumentSchema; export declare function GuestDocumentSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestDocumentSchema; export declare function GuestDocumentSchemaToJSON(json: any): GuestDocumentSchema; export declare function GuestDocumentSchemaToJSONTyped(value?: GuestDocumentSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestDocumentSchema.d.ts.map