/** * 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. */ import type { IntentEnum } from './IntentEnum'; /** * Token Serializer * @export * @interface TokenRequest */ export interface TokenRequest { /** * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. * @type {string} * @memberof TokenRequest */ managed?: string | null; /** * * @type {string} * @memberof TokenRequest */ identifier: string; /** * * @type {IntentEnum} * @memberof TokenRequest */ intent?: IntentEnum; /** * * @type {number} * @memberof TokenRequest */ user?: number; /** * * @type {string} * @memberof TokenRequest */ description?: string; /** * * @type {Date} * @memberof TokenRequest */ expires?: Date | null; /** * * @type {boolean} * @memberof TokenRequest */ expiring?: boolean; } /** * Check if a given object implements the TokenRequest interface. */ export declare function instanceOfTokenRequest(value: object): value is TokenRequest; export declare function TokenRequestFromJSON(json: any): TokenRequest; export declare function TokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenRequest; export declare function TokenRequestToJSON(json: any): TokenRequest; export declare function TokenRequestToJSONTyped(value?: TokenRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TokenRequest.d.ts.map