com.volcengine.model.imagex.v2.GetImageOCRV2ResResultExtra 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;
/**
* GetImageOCRV2ResResultExtra
*/
@lombok.Data
public final class GetImageOCRV2ResResultExtra {
/**
* 算子服务处理状态,0: 成功 -1: 图片载入失败 -2: 图片检测失败
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private Integer status;
/**
* 状态对应信息, 0: 成功 -1: 图片载入失败 -2: 图片检测失败
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Message")
private String message;
/**
* 算子服务返回的json序列化结果
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Info")
private String info;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy