/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * An account * * @example * { * id: "us_acc_YOUR_ID", * name: "MyAccountName", * metadata: {}, * createdAt: "2023-10-30T16:59:45.735Z", * updatedAt: "2023-10-30T16:59:45.735Z" * } */ export interface Account { id: Flatfile.AccountId; name: string; primaryDomain?: string; subdomain?: string; vanityDomainDashboard?: string; vanityDomainSpaces?: string; embeddedDomainWhitelist?: string[]; customFromEmail?: string; stripeCustomerId?: string; metadata: Record; createdAt: Date; updatedAt: Date; defaultAppId?: Flatfile.AppId; dashboard?: number; }