/* Options: Date: 2025-08-05 02:04:25 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteABTests.* //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="/ab-testing/tests", Verbs="DELETE") public static class DeleteABTests { public ArrayList Ids = null; public ArrayList getIds() { return Ids; } public DeleteABTests setIds(ArrayList value) { this.Ids = value; return this; } } }