/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * domains: ["domains"], * org_name: "org_name", * locations: ["locations"] * } */ export interface EnableAskAiRequest { /** List of domains to enable Ask AI for */ domains: string[]; /** Organization name */ org_name: string; /** List of locations to enable (docs, slack, discord) */ locations: string[]; /** Whether this is a preview domain */ preview?: boolean; }