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