/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Properties used to update an account * * @example * { * name: "My Company Name", * defaultAppId: "us_app_YOUR_ID" * } */ export interface AccountPatch { name?: string; defaultAppId?: Flatfile.AppId; }