/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { LDAPServerUser } from './'; /** * * @export * @interface LDAPServerGroup */ export interface LDAPServerGroup { /** * * @type {string} * @memberof LDAPServerGroup */ dn: string; /** * * @type {string} * @memberof LDAPServerGroup */ name: string; /** * * @type {Array} * @memberof LDAPServerGroup */ users: Array; } export declare function LDAPServerGroupFromJSON(json: any): LDAPServerGroup; export declare function LDAPServerGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): LDAPServerGroup; export declare function LDAPServerGroupToJSON(value?: LDAPServerGroup | null): any;