package hello.world;
import java.lang.Exception;
import java.util.List;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetEarningsCallTranscriptsResponse;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetEarningsCallTranscriptsResponse res = sdk.earningsCallTranscripts().get()
.tickers(List.of(
"<value>"))
.callId(List.of(
"<id>"))
.page(700347L)
.pagesize(558834L)
.call();
if (res.modelsTranscriptSummaries().isPresent()) {
// レスポンスを処理する
}
}
}