/** * 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/responses/{id}. Both values come from the emailed link, * never from a session - there is no authorizer on the guest path. * tenantId is the BASE tenant id; accessToken is the per-response * token minted at create and compared with hmac.compare_digest. Any * mismatch returns 404, intentionally indistinguishable from * "response not found" so existence is never leaked. * @export * @interface GuestResponseMetaSchema */ export interface GuestResponseMetaSchema { /** * * @type {string} * @memberof GuestResponseMetaSchema */ tenantId: string; /** * * @type {string} * @memberof GuestResponseMetaSchema */ accessToken: string; } /** * Check if a given object implements the GuestResponseMetaSchema interface. */ export declare function instanceOfGuestResponseMetaSchema(value: object): value is GuestResponseMetaSchema; export declare function GuestResponseMetaSchemaFromJSON(json: any): GuestResponseMetaSchema; export declare function GuestResponseMetaSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestResponseMetaSchema; export declare function GuestResponseMetaSchemaToJSON(json: any): GuestResponseMetaSchema; export declare function GuestResponseMetaSchemaToJSONTyped(value?: GuestResponseMetaSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestResponseMetaSchema.d.ts.map