/** * 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 { User } from './User'; import type { Application } from './Application'; /** * UserConsent Serializer * @export * @interface UserConsent */ export interface UserConsent { /** * * @type {number} * @memberof UserConsent */ readonly pk: number; /** * * @type {Date} * @memberof UserConsent */ expires?: Date | null; /** * * @type {boolean} * @memberof UserConsent */ expiring?: boolean; /** * * @type {User} * @memberof UserConsent */ user: User; /** * * @type {Application} * @memberof UserConsent */ application: Application; /** * * @type {string} * @memberof UserConsent */ permissions?: string; } /** * Check if a given object implements the UserConsent interface. */ export declare function instanceOfUserConsent(value: object): value is UserConsent; export declare function UserConsentFromJSON(json: any): UserConsent; export declare function UserConsentFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserConsent; export declare function UserConsentToJSON(json: any): UserConsent; export declare function UserConsentToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserConsent.d.ts.map