/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type LDAPSearch4Params = { /** * ----- connection ----- * Optional. ID of the preconfigured LDAP catalog */ catalogId?: string; /** * Optional. URL to establish connection to LDAP catalog * * URL e.g.: [(ldap|ldapi|ldaps)://]host[:port] */ url?: string; /** * TODO: (!) * * base64 */ 'tls.pem'?: string; /** * ----- BIND: Authorization ----- * * authorization method e.g.: SIMPLE, SAML, NTLM, etc. */ bind?: string; /** * bind_dn */ username?: string; /** * password */ password?: string; /** * ----- SearchRequest ----- * baseObject [D]istinguished[N]ame */ baseObject?: string; /** * baseObject (0), * singleLevel (1), * wholeSubtree (2) */ scope?: number; /** * neverDerefAliases (0), * derefInSearching (1), * derefFindingBaseObj (2), * derefAlways (3) */ derefAliases?: number; /** * INTEGER (0 .. maxInt), */ sizeLimit?: string; /** * INTEGER (0 .. maxInt), */ timeLimit?: string; /** * BOOLEAN, */ typesOnly?: boolean; /** * Filter, */ filter?: string; /** * AttributeSelection */ attributes?: string[]; };