export interface UsernamePolicy { isActive?: boolean maxLength: number; minLength: number; allowedFormats?: { usernameInEmailFormat?: boolean; usernameInPhoneFormat?: boolean; }; }
Was this page helpful?