/* Options: Date: 2025-12-06 09:47:49 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SchedulerUrlAvailabilityRequest.* //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="/v1/Scheduler/Url/Availability/{ConfigId}/{SchedulerUrl}", Verbs="GET,OPTIONS") public static class SchedulerUrlAvailabilityRequest { public Integer ConfigId = null; public String SchedulerUrl = null; public Integer getConfigId() { return ConfigId; } public SchedulerUrlAvailabilityRequest setConfigId(Integer value) { this.ConfigId = value; return this; } public String getSchedulerUrl() { return SchedulerUrl; } public SchedulerUrlAvailabilityRequest setSchedulerUrl(String value) { this.SchedulerUrl = value; return this; } } }