TotalBalance

interface TotalBalance {
	/**
	 * Default is USD.
	 * @maxLength 10
	 */
	currency?: string;
	/**
	 * Value of this position in reference currency.
	 * @format decimal
	 * @pattern ^-?\d{0,96}(?:\.\d{0,4})?$
	 */
	value: string | null;
}