com.volcengine.model.response.GetDirectEditResultResponse 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.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
import java.util.Map;
@Data
public class GetDirectEditResultResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
List result;
@Data
public static class ResultBean {
@JSONField(name = "ReqId")
String reqId;
@JSONField(name = "EditParam")
Map editParam;
@JSONField(name = "Priority")
Integer priority;
@JSONField(name = "Status")
String status;
@JSONField(name = "TaskId")
String taskId;
@JSONField(name = "OutputVid")
String outputVid;
@JSONField(name = "CallbackUri")
String callbackUri;
@JSONField(name = "CallbackArgs")
String callbackArgs;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy