/** * 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. */ /** * * @export * @interface LDAPServer */ export interface LDAPServer { /** * * @type {number} * @memberof LDAPServer */ id: number; /** * * @type {string} * @memberof LDAPServer */ name?: string; /** * * @type {string} * @memberof LDAPServer */ readonly winbindSeparator: string; /** * * @type {string} * @memberof LDAPServer */ ntDomain?: string; } export declare function LDAPServerFromJSON(json: any): LDAPServer; export declare function LDAPServerFromJSONTyped(json: any, ignoreDiscriminator: boolean): LDAPServer; export declare function LDAPServerToJSON(value?: LDAPServer | null): any;