/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * 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 { OrganizationUser } from './OrganizationUser.js'; /** * * @export * @interface GetOrganizationUsersResponse */ export interface GetOrganizationUsersResponse { /** * Response code. * @type {string} * @memberof GetOrganizationUsersResponse */ code?: string; /** * Response message. * @type {string} * @memberof GetOrganizationUsersResponse */ message?: string; /** * * @type {Array} * @memberof GetOrganizationUsersResponse */ organizationUsers?: Array; /** * Pagination token. * @type {string} * @memberof GetOrganizationUsersResponse */ nextToken?: string; } /** * Check if a given object implements the GetOrganizationUsersResponse interface. */ export declare function instanceOfGetOrganizationUsersResponse(value: object): boolean; export declare function GetOrganizationUsersResponseFromJSON(json: any): GetOrganizationUsersResponse; export declare function GetOrganizationUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetOrganizationUsersResponse; export declare function GetOrganizationUsersResponseToJSON(value?: GetOrganizationUsersResponse | null): any;