/* Options: Date: 2025-05-06 16:04:05 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FindKSIFixtures.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/ksiFixtures/search", Verbs="GET POST") // @Route(Path="/ksiFixtures/searchClub/{MenWomenBoth}/{HomeAwayBoth}/{ksiTeamId}", Verbs="GET POST") // @Route(Path="/ksiFixtures/searchClub/{MenWomenBoth}/{HomeAwayBoth}/{ksiTeamId}/DATES/{FromDate}/{ToDate}", Verbs="GET POST") // @Route(Path="/ksiFixtures/searchCompetition/{ksiCompetitionId}", Verbs="GET POST") // @Route(Path="/ksiFixtures/searchCompetition/{ksiCompetitionId}/DATES/{FromDate}/{ToDate}", Verbs="GET POST") // @Route(Path="/ksiFixtures/searchDates/{FromDate}/{ToDate}", Verbs="GET POST") public static class FindKSIFixtures implements IReturn> { public String menWomenBoth = null; public String homeAwayBoth = null; public Integer ksiTeamID = null; public Integer ksiCompetitionId = null; public Date fromDate = null; public Date toDate = null; public String getMenWomenBoth() { return menWomenBoth; } public FindKSIFixtures setMenWomenBoth(String value) { this.menWomenBoth = value; return this; } public String getHomeAwayBoth() { return homeAwayBoth; } public FindKSIFixtures setHomeAwayBoth(String value) { this.homeAwayBoth = value; return this; } public Integer getKsiTeamID() { return ksiTeamID; } public FindKSIFixtures setKsiTeamID(Integer value) { this.ksiTeamID = value; return this; } public Integer getKsiCompetitionId() { return ksiCompetitionId; } public FindKSIFixtures setKsiCompetitionId(Integer value) { this.ksiCompetitionId = value; return this; } public Date getFromDate() { return fromDate; } public FindKSIFixtures setFromDate(Date value) { this.fromDate = value; return this; } public Date getToDate() { return toDate; } public FindKSIFixtures setToDate(Date value) { this.toDate = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }