/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Properties used to allow users to request our private services * * @example * { * accessToken: "eyJhbGciO_VERY_LONG_TOKEN_STRING", * expiresIn: "86400", * expires: "2022-09-18T00:19:57.007Z", * email: "yourEmail@example.com", * userId: "UserId.Example0", * accountId: "AccountId.Example0" * } */ export interface AccessToken { accessToken: string; expiresIn: string; expires: string; email?: string; userId?: Flatfile.UserId; accountId?: Flatfile.AccountId; }