/* Options: Date: 2025-12-06 05:52:40 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: ProjectInvoiceRequest.* //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/Invoice/{ProjectID}/{InvoiceStartDate}/{InvoiceEndDate}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class ProjectInvoiceRequest : IReturn { open var ProjectID:Int? = null open var InvoiceStartDate:Date? = null open var InvoiceEndDate:Date? = null companion object { private val responseType = ProjectInvoiceResponse::class.java } override fun getResponseType(): Any? = ProjectInvoiceRequest.responseType } open class ProjectInvoiceResponse { open var ResponseStatus:ResponseStatus? = null open var ProjectInvoice:ArrayList = ArrayList() } open class ProjectInvoice { open var CostType:String? = null open var CostName:String? = null open var CostToDate:BigDecimal? = null open var JobID:Int? = null open var Rate:BigDecimal? = null open var Hours:Int? = null }