/* Options: Date: 2025-12-06 06:28:14 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: NoticeAdminRequest.* //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/NoticeAdmin/{NoticeId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/NoticeAdmin/", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class NoticeAdminRequest : IReturn { open var DateAsOf:Date? = null open var NoticeID:Int? = null open var Notice:ArrayList = ArrayList() companion object { private val responseType = NoticeAdminResponse::class.java } override fun getResponseType(): Any? = NoticeAdminRequest.responseType } open class NoticeAdminResponse { 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 }