com.volcengine.model.request.ApplyImageUploadRequest 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.List;
@Data
public class ApplyImageUploadRequest {
@JSONField(name = "ServiceId")
String serviceId;
@JSONField(name = "SessionKey")
String sessionKey;
@JSONField(name = "UploadNum")
Integer uploadNum;
@JSONField(name = "StoreKeys")
List storeKeys;
@JSONField(name = "FileExtension")
String fileExtension;
@JSONField(name = "Prefix")
String prefix;
@JSONField(name = "Overwrite")
String overwrite;
@JSONField(serialize = false)
Boolean skipCommit;
@JSONField(serialize = false)
Boolean skipMeta;
@JSONField(serialize = false)
CommitImageUploadRequest commitParam;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy