I’ve added the following dependency in my Spring Boot project:
xml
CopyEdit
<dependency>
<groupId>com.upstox.api</groupId>
<artifactId>upstox-java-sdk</artifactId>
<version>1.1.0</version>
<scope>compile</scope>
</dependency>
I’m trying to import the class MarketQuoteV3Api
using:
java
CopyEdit
import com.upstox.api.MarketQuoteV3Api;
But it seems like MarketQuoteV3Api
is not available in the com.upstox.api
package. Could you please help me understand how to correctly import or access it?