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