import type { LdapConnectionSettingsDto } from '../schemas/LdapConnectionSettingsDto'; import type { LdapGroupSettingsDto } from '../schemas/LdapGroupSettingsDto'; import type { LdapUserSettingsDto } from '../schemas/LdapUserSettingsDto'; /** * Ldap Settings DTO */ export interface LdapSettingsDto { account_identifier: string; cron_expression?: string; disabled?: boolean; identifier: string; ldap_connection_settings?: LdapConnectionSettingsDto; ldap_group_settings?: LdapGroupSettingsDto[]; ldap_user_settings?: LdapUserSettingsDto[]; name: string; sso_type?: string; url?: string; }