/** * 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 PatchedTokenRequest */ export interface PatchedTokenRequest { /** * 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 PatchedTokenRequest */ managed?: string | null; /** * * @type {string} * @memberof PatchedTokenRequest */ identifier?: string; /** * * @type {IntentEnum} * @memberof PatchedTokenRequest */ intent?: IntentEnum; /** * * @type {number} * @memberof PatchedTokenRequest */ user?: number; /** * * @type {string} * @memberof PatchedTokenRequest */ description?: string; /** * * @type {Date} * @memberof PatchedTokenRequest */ expires?: Date | null; /** * * @type {boolean} * @memberof PatchedTokenRequest */ expiring?: boolean; } /** * Check if a given object implements the PatchedTokenRequest interface. */ export declare function instanceOfPatchedTokenRequest(value: object): value is PatchedTokenRequest; export declare function PatchedTokenRequestFromJSON(json: any): PatchedTokenRequest; export declare function PatchedTokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedTokenRequest; export declare function PatchedTokenRequestToJSON(json: any): PatchedTokenRequest; export declare function PatchedTokenRequestToJSONTyped(value?: PatchedTokenRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedTokenRequest.d.ts.map