/* Options: Date: 2025-12-06 08:18:42 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GiftCardGameLeaderboardRequest.* //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="/v1/GiftCardGameLeaderboard/{EndDate}/{StartDate}", Verbs="GET,OPTIONS") public static class GiftCardGameLeaderboardRequest implements IReturn { public Date StartDate = null; public Date EndDate = null; public Date getStartDate() { return StartDate; } public GiftCardGameLeaderboardRequest setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public GiftCardGameLeaderboardRequest setEndDate(Date value) { this.EndDate = value; return this; } private static Object responseType = GiftCardGameLeaderboardResponse.class; public Object getResponseType() { return responseType; } } public static class GiftCardGameLeaderboardResponse { public ResponseStatus ResponseStatus = null; public ArrayList GiftCardGameLeaderboard = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public GiftCardGameLeaderboardResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getGiftCardGameLeaderboard() { return GiftCardGameLeaderboard; } public GiftCardGameLeaderboardResponse setGiftCardGameLeaderboard(ArrayList value) { this.GiftCardGameLeaderboard = value; return this; } } public static class GiftCardGameLeaderboard { public Integer AgentId = null; public String FullName = null; public Integer Cards = null; public Integer Points = null; public Integer getAgentId() { return AgentId; } public GiftCardGameLeaderboard setAgentId(Integer value) { this.AgentId = value; return this; } public String getFullName() { return FullName; } public GiftCardGameLeaderboard setFullName(String value) { this.FullName = value; return this; } public Integer getCards() { return Cards; } public GiftCardGameLeaderboard setCards(Integer value) { this.Cards = value; return this; } public Integer getPoints() { return Points; } public GiftCardGameLeaderboard setPoints(Integer value) { this.Points = value; return this; } } }