/* Options: Date: 2026-07-08 21:38:27 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: PursuitListRequest.* //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/pursuits", Verbs="GET,OPTIONS") open class PursuitListRequest : IReturn { companion object { private val responseType = PursuitListResponse::class.java } override fun getResponseType(): Any? = PursuitListRequest.responseType } open class PursuitListResponse { open var ResponseStatus:ResponseStatus? = null open var Pursuits:ArrayList = ArrayList() open var Summary:PursuitPipelineSummary? = null } open class Pursuit { open var PursuitID:Int? = null open var PursuitUID:UUID? = null open var PursuitNumber:String? = null open var Name:String? = null open var ClientOwner:String? = null open var WorkType:String? = null open var Solicitation:String? = null open var Location:String? = null open var Scope:String? = null open var Stage:String? = null open var Outcome:String? = null open var BidValue:BigDecimal? = null open var EstCost:BigDecimal? = null open var WinProbability:BigDecimal? = null open var CostOfPursuit:BigDecimal? = null open var DueDate:Date? = null open var EstimatorRfpRef:String? = null open var AwardedProjectID:Int? = null open var OpenedAt:Date? = null open var SubmittedAt:Date? = null open var DecidedAt:Date? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null open var DaysOpen:Int? = null open var WeightedValue:BigDecimal? = null open var Activity:ArrayList = ArrayList() } open class PursuitPipelineSummary { open var ActivePursuits:Int? = null open var PipelineValue:BigDecimal? = null open var WeightedValue:BigDecimal? = null open var WonCount:Int? = null open var DecidedCount:Int? = null open var WinRate:BigDecimal? = null open var ClosingThisWeek:Int? = null } open class PursuitActivity { open var PursuitActivityID:Int? = null open var PursuitID:Int? = null open var Kind:String? = null open var Label:String? = null open var Detail:String? = null open var Actor:String? = null open var CreatedAt:Date? = null }