
clarifai2.dto.model.StatusCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Clarifai Java API Client
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