com.volcengine.model.request.SubmitTemplateTaskRequest 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.request;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.HashMap;
import java.util.List;
@Data
public class SubmitTemplateTaskRequest {
@JSONField(name = "TemplateId")
String templateId;
@JSONField(name = "Type")
Integer type;
@JSONField(name = "Space")
String space;
@JSONField(name = "VideoName")
List videoName;
@JSONField(name = "Params")
List> params;
@JSONField(name = "ExtraParams")
List> extraParams;
@JSONField(name = "Priority")
Integer priority;
@JSONField(name = "CallbackUri")
String callbackUri;
@JSONField(name = "CallbackArgs")
String callbackArgs;
@Data
public static class TemplateParamItem {
@JSONField(name = "Name")
String name;
@JSONField(name = "Type")
String type;
@JSONField(name = "Position")
String position;
@JSONField(name = "Source")
String source;
@JSONField(name = "Text")
String text;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy