Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 2.08 KB

README.md

File metadata and controls

60 lines (40 loc) · 2.08 KB

Earnings

(earnings())

Overview

Available Operations

  • get - Get Earnings

get

Returns the earnings data

Example Usage

package hello.world;

import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetEarningsRequest;
import com.benzinga.bzclient.models.operations.GetEarningsResponse;
import java.lang.Exception;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetEarningsRequest req = GetEarningsRequest.builder()
                .build();

        GetEarningsResponse res = sdk.earnings().get()
                .request(req)
                .call();

        if (res.modelsEarningJSON().isPresent()) {
            // handle response
        }
    }
}

Parameters

Parameter Type Required Description
request GetEarningsRequest ✔️ The request object to use for the request.

Response

GetEarningsResponse

Errors

Error Type Status Code Content Type
models/errors/APIException 4XX, 5XX */*