/**
 * Append an asset for the symbol to the end of watchlist asset list
 */
export type AddAssetToWatchlistRequest = {
  /**
   * symbol name to append to watchlist
   */
  symbol?: string;
};
