
net.jacobpeterson.alpaca.enums.AssetStatus 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 and Polygon
package net.jacobpeterson.alpaca.enums;
import net.jacobpeterson.abstracts.enums.APIName;
/**
* The Enum AssetStatus.
*/
public enum AssetStatus implements APIName {
/** The active. */
ACTIVE("active"),
/** The inactive. */
INACTIVE("inactive");
/** The api name. */
String apiName;
/**
* Instantiates a new asset status.
*
* @param apiName the api name
*/
AssetStatus(String apiName) {
this.apiName = apiName;
}
@Override
public String getAPIName() {
return apiName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy