com.volcengine.model.request.UploadContentSecurityCustTextLibRequest 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.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class UploadContentSecurityCustTextLibRequest {
@JSONField(name = "app_id")
Integer appId;
@JSONField(name = "service")
String service;
@JSONField(name = "name")
String name;
@JSONField(name = "data")
List data;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy