Petersoj / alpaca-java

A Java API for Alpaca, the commission free, algo friendly, stock trading broker. https://alpaca.markets
https://petersoj.github.io/alpaca-java/
MIT License
197 stars 82 forks source link

polygon.domain classes missing from source #4

Closed 5toner closed 5 years ago

5toner commented 5 years ago

I just downloaded the source and the PolygonAPI won't compile because the polygon.domain package is missing...

import io.github.mainstringargs.polygon.domain.SymbolAnalystRatings;
import io.github.mainstringargs.polygon.domain.SymbolDetails;
import io.github.mainstringargs.polygon.domain.SymbolDividend;
import io.github.mainstringargs.polygon.domain.SymbolEarning;
import io.github.mainstringargs.polygon.domain.SymbolEndpoints;
import io.github.mainstringargs.polygon.domain.SymbolFinancial;
import io.github.mainstringargs.polygon.domain.SymbolNews;
import io.github.mainstringargs.polygon.domain.Ticker;

I also noticed other domain package classes missing like...

import io.github.mainstringargs.polygon.domain.StockQuote;
import io.github.mainstringargs.polygon.domain.StockTrade;

Should I this pull this from another repository? Or should it be in this one?

mainstringargs commented 5 years ago

These files are generated from the json files in the sampleJson folder using jsonShema2Pojo. Running “gradlew build” will create the source.

5toner commented 5 years ago

Thank you for the prompt response. Sorry I overlooked this detail as I’m using Maven.

On Wed, May 1, 2019 at 9:49 PM main(String[] args) notifications@github.com wrote:

These files are generated from the json files in the sampleJson folder using jsonShema2Pojo. Running “gradlew build” will create the source.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/mainstringargs/alpaca-java/issues/4#issuecomment-488532000, or mute the thread https://github.com/notifications/unsubscribe-auth/AL65CLZ3UEY6XZKVARGLKBLPTJCEDANCNFSM4HJ23WXA .

mainstringargs commented 5 years ago

No problem. Thanks for taking a look.