/* Options: Date: 2025-12-15 12:45:36 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://api.oszz.ru //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SearchOrder.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/searchOrder", Verbs="POST, GET") @DataContract public static class SearchOrder implements IReturn { @DataMember public String comment = null; @DataMember public Long fromGlobalId = null; @DataMember public Long toGlobalId = null; @DataMember public Integer page = null; @DataMember public Date fromDate = null; @DataMember public Date toDate = null; @DataMember public UUID tokenId = null; public String getComment() { return comment; } public SearchOrder setComment(String value) { this.comment = value; return this; } public Long getFromGlobalId() { return fromGlobalId; } public SearchOrder setFromGlobalId(Long value) { this.fromGlobalId = value; return this; } public Long getToGlobalId() { return toGlobalId; } public SearchOrder setToGlobalId(Long value) { this.toGlobalId = value; return this; } public Integer getPage() { return page; } public SearchOrder setPage(Integer value) { this.page = value; return this; } public Date getFromDate() { return fromDate; } public SearchOrder setFromDate(Date value) { this.fromDate = value; return this; } public Date getToDate() { return toDate; } public SearchOrder setToDate(Date value) { this.toDate = value; return this; } public UUID getTokenId() { return tokenId; } public SearchOrder setTokenId(UUID value) { this.tokenId = value; return this; } private static Object responseType = SearchOrderResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class SearchOrderResponse { @DataMember public ResponseStatus responseStatus = null; @DataMember public Long totalResultsCount = null; @DataMember public ArrayList result = null; public ResponseStatus getResponseStatus() { return responseStatus; } public SearchOrderResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Long getTotalResultsCount() { return totalResultsCount; } public SearchOrderResponse setTotalResultsCount(Long value) { this.totalResultsCount = value; return this; } public ArrayList getResult() { return result; } public SearchOrderResponse setResult(ArrayList value) { this.result = value; return this; } } }