/* Options: Date: 2025-12-06 06:27:01 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: ProjectProfitLossRequest.* //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/Project/ProfitLoss/{ProjectID}/{ProfitLossStartDate}/{ProfitLossEndDate}", Verbs="GET,OPTIONS") open class ProjectProfitLossRequest : IReturn { open var ProjectID:Int? = null open var ProfitLossStartDate:Date? = null open var ProfitLossEndDate:Date? = null companion object { private val responseType = ProjectProfitLossResponse::class.java } override fun getResponseType(): Any? = ProjectProfitLossRequest.responseType } open class ProjectProfitLossResponse { open var ResponseStatus:ResponseStatus? = null open var ProjectProfitLoss:ProjectCost? = null } open class ProjectCost { open var ProjectID:Int? = null open var Budget:BigDecimal? = null open var CrewCost:BigDecimal? = null open var EquipmentCost:BigDecimal? = null open var MaterialCost:BigDecimal? = null open var TotalCost:BigDecimal? = null open var BilledCrewCost:BigDecimal? = null open var BilledEquipmentCost:BigDecimal? = null open var BilledMaterialCost:BigDecimal? = null open var BilledTotalCost:BigDecimal? = null }