/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * id: "us_env_YOUR_ID", * accountId: "us_acc_YOUR_ID", * name: "dev", * isProd: false, * guestAuthentication: [Flatfile.GuestAuthenticationEnum.MagicLink], * features: {}, * metadata: {}, * namespaces: ["default"] * } */ export interface Environment { id: Flatfile.EnvironmentId; accountId: Flatfile.AccountId; /** The name of the environment */ name: string; /** Whether or not the environment is a production environment */ isProd: boolean; guestAuthentication: Flatfile.GuestAuthenticationEnum[]; features: Record; metadata: Record; translationsPath?: string; namespaces?: string[]; languageOverride?: string; }