15 lines
310 B
Java
15 lines
310 B
Java
package ru.soune.nocopy.dto.statistic;
|
|||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class TariffStatisticRequest {
|
||
|
|
|
||
|
|
@JsonProperty("company_only")
|
||
|
|
private Boolean companyOnly = false;
|
||
|
|
|
||
|
|
@JsonProperty("active_only")
|
||
|
|
private Boolean activeOnly = true;
|
||
|
|
}
|