com.mindee.http.CustomEndpointInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindee-api-java Show documentation
Show all versions of mindee-api-java Show documentation
Java Library to call Mindee's Off-The-Shelf and Custom APIs
The newest version!
package com.mindee.http;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Endpoint settings for custom documents.
*/
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomEndpointInfo {
/**
* The name of the product associated to the expected model.
*/
String endpointName();
/**
* The name of the account that owns the API. Required when using custom builder.
*/
String accountName();
/**
* The version number of the API. Without the v (for example for the v1.2: 1.2).
* 1 by default.
*/
String version() default "1";
}