com.volcengine.service.visual.model.request.VisualEntitySegmentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.visual.model.request;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.ArrayList;
@Data
public class VisualEntitySegmentRequest {
@JSONField(name = "req_key")
String reqKey="";
@JSONField(name = "binary_data_base64")
ArrayList binary_data_base64;
@JSONField(name = "image_urls")
ArrayList imageUrls;
@JSONField(name = "return_url")
boolean returnUrl=false;
@JSONField(name = "max_entity")
int max_entity=20;
@JSONField(name = "return_format")
int returnFormat=0;
@JSONField(name = "refine_mask")
int refineMask=0;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy