/* Options: Date: 2025-12-06 06:07:51 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: NoticeAgreementRequest.* //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/noticeAgreement/{AgentId}", Verbs="GET,POST,OPTIONS") // @Route(Path="/v1/noticeAgreement/{AgentId}/{Status}", Verbs="PUT,OPTIONS") open class NoticeAgreementRequest : IReturn { open var AgentId:Int? = null open var Status:String? = null companion object { private val responseType = NoticeAgreementResponse::class.java } override fun getResponseType(): Any? = NoticeAgreementRequest.responseType } open class NoticeAgreementResponse { open var ResponseStatus:ResponseStatus? = null open var AgentAgreement:NoticeAgreement? = null } open class NoticeAgreement { open var Id:Int? = null open var AgentId:Int? = null open var AgentName:String? = null open var Status:String? = null open var SignedDate:Date? = null open var FirstViewed:Date? = null open var SnoozedDate:Date? = null }