/* Options: Date: 2026-01-14 10:39:33 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://iso-api.adumen.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ErcotDownloadTestRequest.* //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="/ercot-download-test", Verbs="POST") public static class ErcotDownloadTestRequest { public String path = null; public Integer id = null; public String getPath() { return path; } public ErcotDownloadTestRequest setPath(String value) { this.path = value; return this; } public Integer getId() { return id; } public ErcotDownloadTestRequest setId(Integer value) { this.id = value; return this; } } }