com.volcengine.model.imagex.v2.GetImageAuditResultResResult 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;
import java.util.List;
/**
* GetImageAuditResultResResult
*/
@lombok.Data
public final class GetImageAuditResultResResult {
/**
* 任务结果
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Results")
private List results;
/**
* 是否还有更多任务,取值如下所示:
*
*
*
* - `true`:是,还有其他任务未列举
*
* - `false`:否,已列举所有任务
*/
@com.alibaba.fastjson.annotation.JSONField(name = "HaveMore")
private Boolean haveMore;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy