/* Options: Date: 2026-01-14 10:46:39 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: ErcotRTUrlRunRequest.* //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-rt-url-run", Verbs="POST") public static class ErcotRTUrlRunRequest { public String url = null; public String getUrl() { return url; } public ErcotRTUrlRunRequest setUrl(String value) { this.url = value; return this; } } }