/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Show token's current key * @export * @interface TokenView */ export interface TokenView { /** * * @type {string} * @memberof TokenView */ readonly key: string; } /** * Check if a given object implements the TokenView interface. */ export declare function instanceOfTokenView(value: object): value is TokenView; export declare function TokenViewFromJSON(json: any): TokenView; export declare function TokenViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenView; export declare function TokenViewToJSON(json: any): TokenView; export declare function TokenViewToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TokenView.d.ts.map