Underlyings

interface Underlyings {
	/** Token object */
	token: Token;
	/**
	 * Position balance of this token in this wallet
	 * @format decimal
	 * @pattern ^-?\d{0,96}(?:\.\d{0,4})?$
	 */
	balance: string;
	/**
	 * Current Price of this token in reference currency
	 * @format decimal
	 * @pattern ^-?\d{0,96}(?:\.\d{0,4})?$
	 */
	price: string;
	/**
	 * Value of this position in reference currency. Calculated as balance * price.
	 * @format decimal
	 * @pattern ^-?\d{0,96}(?:\.\d{0,4})?$
	 */
	value: string;
}