23 lines
442 B
Java
23 lines
442 B
Java
package ru.soune.nocopy.dto.cost;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@Builder
|
|
public class CostResponse {
|
|
private int cost;
|
|
|
|
private Boolean success;
|
|
|
|
@JsonProperty("max_files_for_check")
|
|
private Integer maxFilesForCheck;
|
|
|
|
@JsonProperty("count_file")
|
|
private Integer countFile;
|
|
|
|
@JsonProperty("tokens_count")
|
|
private int needTokensCount;
|
|
}
|