/* Options: Date: 2026-08-01 04:17:56 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: RfpAddDocumentRequest.* //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/Rfp/{RfpDocumentUID}/Documents", Verbs="POST,OPTIONS") open class RfpAddDocumentRequest : IReturn { open var RfpDocumentUID:UUID? = null open var DocumentType:String? = null companion object { private val responseType = RfpAddDocumentResponse::class.java } override fun getResponseType(): Any? = RfpAddDocumentRequest.responseType } open class RfpAddDocumentResponse { open var ResponseStatus:ResponseStatus? = null open var RfpDocumentID:Int? = null open var RfpDocumentUID:UUID? = null open var FileName:String? = null open var DocumentType:String? = null open var Status:String? = null open var Filed:Boolean? = null }