/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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 { ObjectAttribute } from './ObjectAttribute'; /** * * @export * @interface PaginatedObjectAttributeList */ export interface PaginatedObjectAttributeList { /** * * @type {Pagination} * @memberof PaginatedObjectAttributeList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedObjectAttributeList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedObjectAttributeList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedObjectAttributeList interface. */ export declare function instanceOfPaginatedObjectAttributeList(value: object): value is PaginatedObjectAttributeList; export declare function PaginatedObjectAttributeListFromJSON(json: any): PaginatedObjectAttributeList; export declare function PaginatedObjectAttributeListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedObjectAttributeList; export declare function PaginatedObjectAttributeListToJSON(json: any): PaginatedObjectAttributeList; export declare function PaginatedObjectAttributeListToJSONTyped(value?: PaginatedObjectAttributeList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedObjectAttributeList.d.ts.map