/* Options: Date: 2025-10-27 21:37:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ConfigurationChannelsById.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/configuration_channels/{Id}", Verbs="GET") @DataContract open class ConfigurationChannelsById : IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") open var Id:Long? = null companion object { private val responseType = ConfigurationChannelsByIdResponse::class.java } override fun getResponseType(): Any? = ConfigurationChannelsById.responseType } open class ConfigurationChannelsByIdResponse { @DataMember(Order=1) open var Id:Long? = null @DataMember(Order=6) open var ResponseStatus:ResponseStatus? = null }