/* Options: Date: 2025-12-06 05:27:33 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetCashbookEntriesReport.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/qry/reports/cashbookEntries") public static class GetCashbookEntriesReport { public String format = null; public Date periodFrom = null; public Date periodTo = null; public String getFormat() { return format; } public GetCashbookEntriesReport setFormat(String value) { this.format = value; return this; } public Date getPeriodFrom() { return periodFrom; } public GetCashbookEntriesReport setPeriodFrom(Date value) { this.periodFrom = value; return this; } public Date getPeriodTo() { return periodTo; } public GetCashbookEntriesReport setPeriodTo(Date value) { this.periodTo = value; return this; } } }