/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Properties used to create a new user * * @example * { * email: "john.smith@example.com", * name: "john.smith", * accountId: "us_acc_YOUR_ID" * } */ export interface UserConfig { email: string; name: string; accountId: Flatfile.AccountId; }