2026-03-03 15:43:47 +07:00
|
|
|
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;
|
|
|
|
|
|
2026-03-05 10:05:18 +07:00
|
|
|
@JsonProperty("max_files_for_check")
|
|
|
|
|
private Integer maxFilesForCheck;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("count_file")
|
|
|
|
|
private Integer countFile;
|
|
|
|
|
|
2026-03-03 15:43:47 +07:00
|
|
|
@JsonProperty("tokens_count")
|
|
|
|
|
private int needTokensCount;
|
|
|
|
|
}
|