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