/** * 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 { UserOAuthSourceConnection } from './UserOAuthSourceConnection'; /** * * @export * @interface PaginatedUserOAuthSourceConnectionList */ export interface PaginatedUserOAuthSourceConnectionList { /** * * @type {Pagination} * @memberof PaginatedUserOAuthSourceConnectionList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedUserOAuthSourceConnectionList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedUserOAuthSourceConnectionList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedUserOAuthSourceConnectionList interface. */ export declare function instanceOfPaginatedUserOAuthSourceConnectionList(value: object): value is PaginatedUserOAuthSourceConnectionList; export declare function PaginatedUserOAuthSourceConnectionListFromJSON(json: any): PaginatedUserOAuthSourceConnectionList; export declare function PaginatedUserOAuthSourceConnectionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedUserOAuthSourceConnectionList; export declare function PaginatedUserOAuthSourceConnectionListToJSON(json: any): PaginatedUserOAuthSourceConnectionList; export declare function PaginatedUserOAuthSourceConnectionListToJSONTyped(value?: PaginatedUserOAuthSourceConnectionList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedUserOAuthSourceConnectionList.d.ts.map