/* Options: Date: 2025-11-08 11:00:31 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetBetCancellationInfo.* //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/bets/cancInfo") public static class GetBetCancellationInfo implements IReturn { public String betId = null; public String getBetId() { return betId; } public GetBetCancellationInfo setBetId(String value) { this.betId = value; return this; } private static Object responseType = BetCancellationInfo.class; public Object getResponseType() { return responseType; } } public static class BetCancellationInfo { public Boolean canCancel = null; public HashMap errors = null; public Boolean isCanCancel() { return canCancel; } public BetCancellationInfo setCanCancel(Boolean value) { this.canCancel = value; return this; } public HashMap getErrors() { return errors; } public BetCancellationInfo setErrors(HashMap value) { this.errors = value; return this; } } }