/* Options: Date: 2025-12-06 09:23:28 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: InvoiceGenerateRequest.* //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/invoice/generate/{ProjectUID}/{InvoiceStartDate}/{InvoiceEndDate}", Verbs="GET,OPTIONS") open class InvoiceGenerateRequest : IReturn { open var ProjectUID:UUID? = null open var InvoiceStartDate:Date? = null open var InvoiceEndDate:Date? = null companion object { private val responseType = InvoiceGenerateResponse::class.java } override fun getResponseType(): Any? = InvoiceGenerateRequest.responseType } open class InvoiceGenerateResponse { open var ResponseStatus:ResponseStatus? = null open var ProjectInvoice:ArrayList = ArrayList() } open class InvoiceLineItem { open var InvoiceLineItemID:Int? = null open var InvoiceID:Int? = null open var Type:String? = null open var Name:String? = null open var Quantity:Int? = null open var PercentageAdjust:BigDecimal? = null open var AmountAdjust:BigDecimal? = null open var Price:BigDecimal? = null open var Description:String? = null open var Notes:String? = null open var IsTaxable:Boolean? = null open var DisplayOrder:Int? = null open var IsLocked:Boolean? = null open var IsDeleted:Boolean? = null open var IsPaid:Boolean? = null open var CreatedDate:Date? = null open var ModifiedDate:Date? = null open var CreatedByUID:UUID? = null }