/** * 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 { Pagination } from './Pagination'; import type { UserConsent } from './UserConsent'; /** * * @export * @interface PaginatedUserConsentList */ export interface PaginatedUserConsentList { /** * * @type {Pagination} * @memberof PaginatedUserConsentList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedUserConsentList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedUserConsentList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedUserConsentList interface. */ export declare function instanceOfPaginatedUserConsentList(value: object): value is PaginatedUserConsentList; export declare function PaginatedUserConsentListFromJSON(json: any): PaginatedUserConsentList; export declare function PaginatedUserConsentListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedUserConsentList; export declare function PaginatedUserConsentListToJSON(json: any): PaginatedUserConsentList; export declare function PaginatedUserConsentListToJSONTyped(value?: PaginatedUserConsentList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedUserConsentList.d.ts.map