/* Options: Date: 2025-12-06 06:04:52 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: NoticeRequest.* //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/Notice/History/{DateAsOf}", Verbs="GET,OPTIONS") // @Route(Path="/v1/Notice", Verbs="GET,OPTIONS") // @Route(Path="/v1/Notice/{NoticeId}", Verbs="GET,POST,OPTIONS") open class NoticeRequest : IReturn { open var DateAsOf:Date? = null open var Notice:ArrayList = ArrayList() companion object { private val responseType = NoticeResponse::class.java } override fun getResponseType(): Any? = NoticeRequest.responseType } open class NoticeResponse { open var ResponseStatus:ResponseStatus? = null open var Notice:ArrayList = ArrayList() } open class Notice { open var NoticeId:Int? = null open var BeginDate:Date? = null open var ExpireDate:Date? = null open var NoticeTitle:String? = null open var NoticeDescription:String? = null open var NoticeFullText:String? = null open var OrderIndex:Int? = null open var IsActive:Boolean? = null open var IsUrgent:Boolean? = null }