io.github.mainstringargs.alpaca.rest.accounts.GetAccountRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alpaca-java Show documentation
Show all versions of alpaca-java Show documentation
Java API for Alpaca trading
package io.github.mainstringargs.alpaca.rest.accounts;
/**
* The Class GetAccountRequestBuilder.
*/
public class GetAccountRequestBuilder extends AccountRequestBuilder {
/**
* Instantiates a new gets the account request builder.
*
* @param baseUrl the base url
*/
public GetAccountRequestBuilder(String baseUrl) {
super(baseUrl);
}
}