All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.model.request.UploadFileRequest Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.request;

import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

@Data
public class UploadFileRequest {
    @JSONField(name = "app_id")
    private Long appId;
    @JSONField(name = "upload_id")
    private String uploadId;
    @JSONField(name = "part_size")
    private Integer partSize;
    @JSONField(name = "content")
    private byte[] content;
    @JSONField(name = "part_num")
    private Integer partNum;
    @JSONField(name = "file_name")
    private String fileName;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy