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