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