This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package ru.soune.nocopy.dto.file;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class CompleteUploadResponse {
|
||||
@JsonProperty("upload_id")
|
||||
private String uploadId;
|
||||
|
||||
@JsonProperty("status")
|
||||
private String status;
|
||||
|
||||
@JsonProperty("uploaded_chunks")
|
||||
private Integer uploadedChunks;
|
||||
|
||||
@JsonProperty("total_chunks")
|
||||
private Integer totalChunks;
|
||||
|
||||
@JsonProperty("message")
|
||||
private String message;
|
||||
|
||||
@JsonProperty("file_path")
|
||||
private String filePath;
|
||||
}
|
||||
Reference in New Issue
Block a user