/* Options: Date: 2026-06-13 04:14:39 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: RfpBriefRequest.* //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}/Brief", Verbs="GET,OPTIONS") open class RfpBriefRequest : IReturn { open var RfpDocumentUID:UUID? = null companion object { private val responseType = RfpBriefResponse::class.java } override fun getResponseType(): Any? = RfpBriefRequest.responseType } open class RfpBriefResponse { open var ResponseStatus:ResponseStatus? = null open var RfpDocumentID:Int? = null open var Brief:RfpBrief? = null } open class RfpBrief { open var ProjectTitle:String? = null open var SolicitationNumber:String? = null open var IssuingOrganization:String? = null open var ProjectType:String? = null open var Summary:String? = null open var Locations:ArrayList = ArrayList() open var Schedule:RfpSchedule? = null open var LineItems:ArrayList = ArrayList() open var BidConstraints:ArrayList = ArrayList() open var SpecialRequirements:ArrayList = ArrayList() } open class RfpLocation { open var Description:String? = null open var City:String? = null open var State:String? = null open var Identifier:String? = null } open class RfpSchedule { open var BidDueDate:String? = null open var EstimatedStartDate:String? = null open var QuestionsDueDate:String? = null open var ContractDurationDays:Int? = null open var Notes:String? = null } open class RfpLineItem { open var ItemNumber:String? = null open var Description:String? = null open var Quantity:Double? = null open var Unit:String? = null open var Category:String? = null open var SourceReference:String? = null } open class RfpBidConstraint { open var Constraint:String? = null open var Detail:String? = null }