/* Options: Date: 2026-03-22 20:52:33 Version: 8.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://guidsapi.bettor.webhop.biz //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FetchGuids.* //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="/guids") public static class FetchGuids implements IReturn { public Integer batchSize = null; public Integer getBatchSize() { return batchSize; } public FetchGuids setBatchSize(Integer value) { this.batchSize = value; return this; } private static Object responseType = GuidsResponse.class; public Object getResponseType() { return responseType; } } public static class GuidsResponse { public ArrayList guids = null; public ArrayList getGuids() { return guids; } public GuidsResponse setGuids(ArrayList value) { this.guids = value; return this; } } }