/** * 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 { UpdateOrganizationUsersRequestUsersInner } from './UpdateOrganizationUsersRequestUsersInner.js'; /** * * @export * @interface UpdateOrganizationUsersRequest */ export interface UpdateOrganizationUsersRequest { /** * Users to add, update or remove from the organization. * @type {Array} * @memberof UpdateOrganizationUsersRequest */ users?: Array; } /** * Check if a given object implements the UpdateOrganizationUsersRequest interface. */ export declare function instanceOfUpdateOrganizationUsersRequest(value: object): boolean; export declare function UpdateOrganizationUsersRequestFromJSON(json: any): UpdateOrganizationUsersRequest; export declare function UpdateOrganizationUsersRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateOrganizationUsersRequest; export declare function UpdateOrganizationUsersRequestToJSON(value?: UpdateOrganizationUsersRequest | null): any;