RawToken

interface RawToken {
	/**
	 * Address of the token
	 * @maxLength 100
	 */
	address?: string;
	/**
	 * Name of the token
	 * @maxLength 100
	 */
	name?: string;
	/**
	 * Symbol of the token
	 * @maxLength 100
	 */
	symbol?: string;
	/** ID of the token */
	id?: number;
}