/** * 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. */ /** * Auth context for the unauthenticated PATCH * /v1/guest/documents/{id}. Both values come from the emailed link, * never from a session. tenantId is the BASE tenant id; accessToken * is the per-participant token minted at send and compared with * hmac.compare_digest. Any mismatch returns 404, intentionally * indistinguishable from "document not found". * @export * @interface GuestDocumentMetaSchema */ export interface GuestDocumentMetaSchema { /** * * @type {string} * @memberof GuestDocumentMetaSchema */ tenantId: string; /** * * @type {string} * @memberof GuestDocumentMetaSchema */ accessToken: string; } /** * Check if a given object implements the GuestDocumentMetaSchema interface. */ export declare function instanceOfGuestDocumentMetaSchema(value: object): value is GuestDocumentMetaSchema; export declare function GuestDocumentMetaSchemaFromJSON(json: any): GuestDocumentMetaSchema; export declare function GuestDocumentMetaSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestDocumentMetaSchema; export declare function GuestDocumentMetaSchemaToJSON(json: any): GuestDocumentMetaSchema; export declare function GuestDocumentMetaSchemaToJSONTyped(value?: GuestDocumentMetaSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestDocumentMetaSchema.d.ts.map