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

clarifai2.dto.model.StatusCode Maven / Gradle / Ivy

The newest version!
package clarifai2.dto.model;

public enum StatusCode {
  /**
   * API key has insufficient scope.s
   */
  INSUFFICIENT_SCOPES(11007);

  private final int statusCode;

  StatusCode(int statusCode) {
    this.statusCode = statusCode;
  }

  /**
   * Returns the numeric value of the status enum.
   * @return numeric value
   */
  public int getValue() {
    return this.statusCode;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy