/** * 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 { AddOrganizationUsersRequestUsersInner } from './AddOrganizationUsersRequestUsersInner.js'; /** * * @export * @interface AddOrganizationUsersRequest */ export interface AddOrganizationUsersRequest { /** * Users to be added to the organization. * @type {Array} * @memberof AddOrganizationUsersRequest */ users?: Array; } /** * Check if a given object implements the AddOrganizationUsersRequest interface. */ export declare function instanceOfAddOrganizationUsersRequest(value: object): boolean; export declare function AddOrganizationUsersRequestFromJSON(json: any): AddOrganizationUsersRequest; export declare function AddOrganizationUsersRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddOrganizationUsersRequest; export declare function AddOrganizationUsersRequestToJSON(value?: AddOrganizationUsersRequest | null): any;