/** * 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 unauthenticated /v1/guest/attempts/* writes. * tenantId scopes the call; accessToken is the per-attempt token * issued at create time. Token mismatch returns 404 (intentionally * indistinguishable from "attempt not found" so we don't leak * attempt existence). * @export * @interface GuestMetaSchema */ export interface GuestMetaSchema { /** * * @type {string} * @memberof GuestMetaSchema */ tenantId: string; /** * * @type {string} * @memberof GuestMetaSchema */ accessToken: string; } /** * Check if a given object implements the GuestMetaSchema interface. */ export declare function instanceOfGuestMetaSchema(value: object): value is GuestMetaSchema; export declare function GuestMetaSchemaFromJSON(json: any): GuestMetaSchema; export declare function GuestMetaSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestMetaSchema; export declare function GuestMetaSchemaToJSON(json: any): GuestMetaSchema; export declare function GuestMetaSchemaToJSONTyped(value?: GuestMetaSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestMetaSchema.d.ts.map