export interface TwitterBotSubrecord { /** Gives access to the Twitter API. */ accessToken?: string; /** Gives access to refresh the Twitter API client. */ refreshToken?: string; /** Used in authenticating the bot account. */ codeVerifier?: string; /** The URL used for bot account authentication. */ authUrl?: string; }