/* Options: Date: 2025-12-19 12:21:59 Version: 10.02 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cip-reporting-dev.chargeitpro.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CompanyTransactionsRequest.* //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="/Company/{CompanyId}/Transactions/{UserId}") // @Route(Path="/Company/{CompanyId}/Transactions/{UserId}/{Start}/{Take}") public static class CompanyTransactionsRequest { public Integer CompanyId = null; public Integer Start = null; public Integer Take = null; public String UserId = null; public Integer getCompanyId() { return CompanyId; } public CompanyTransactionsRequest setCompanyId(Integer value) { this.CompanyId = value; return this; } public Integer getStart() { return Start; } public CompanyTransactionsRequest setStart(Integer value) { this.Start = value; return this; } public Integer getTake() { return Take; } public CompanyTransactionsRequest setTake(Integer value) { this.Take = value; return this; } public String getUserId() { return UserId; } public CompanyTransactionsRequest setUserId(String value) { this.UserId = value; return this; } } }