com.volcengine.model.imagex.v2.CreateImageHmExtractResResult 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.model.imagex.v2;
import com.alibaba.fastjson.JSON;
/**
* CreateImageHmExtractResResult
*/
@lombok.Data
public final class CreateImageHmExtractResResult {
/**
* 响应码,具体取值如下所示:
*
* * `-1`:盲水印为空;
*
* * `0`:`info`不为空时表示盲水印提取成功。
*
* :::tip
*
* 提取失败时显示接口错误。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StatusCode")
private Integer statusCode;
/**
* 提取出的盲水印文本信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Info")
private String info;
/**
* 仅当 `Algorithm` 取值为 `tracev2` 时,有返回值。
*
*
*
* 编码附加信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AdditionInfo")
private CreateImageHmExtractResResultAdditionInfo additionInfo;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy