/* Options: Date: 2025-12-06 05:49:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: NotificationMethods.* //ExcludeTypes: //InitializeCollections: True //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="/v1/NotificationMethods", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/NotificationMethods/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class NotificationMethods : NotificationMethodObject(), IReturn { open var ApiKey:UUID? = null companion object { private val responseType = NotificationMethodsResponse::class.java } override fun getResponseType(): Any? = NotificationMethods.responseType } open class NotificationMethodsResponse { open var ResponseStatus:ResponseStatus? = null open var NotificationMethods:ArrayList = ArrayList() } open class NotificationMethodObject { open var Id:UUID? = null open var Name:String? = null }