All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mainstringargs.alpaca.enums.OrderTimeInForce Maven / Gradle / Ivy

There is a newer version: 5.0.13
Show newest version
package io.github.mainstringargs.alpaca.enums;

/**
 * The Enum OrderTimeInForce.
 */
public enum OrderTimeInForce {

  /** The day. */
  DAY("day"),

  /** The gtc. */
  GTC("gtc"),

  /** The opg. */
  OPG("opg");

  /** The api name. */
  String apiName;

  /**
   * Instantiates a new order time in force.
   *
   * @param apiName the api name
   */
  OrderTimeInForce(String apiName) {
    this.apiName = apiName;
  }

  /**
   * Gets the API name.
   *
   * @return the API name
   */
  public String getAPIName() {
    return apiName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy