/* Options: Date: 2026-04-01 02:33:20 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSummarizedInvoice.* //ExcludeTypes: //InitializeCollections: False //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="/eaccounting/summarizedinvoice/{Id}", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class GetSummarizedInvoice : IReturn, ICompany { /** * The summarized invoice id. */ @ApiMember(Description="The summarized invoice id.", IsRequired=true) open var Id:UUID? = null /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") override var CompanyId:UUID? = null companion object { private val responseType = SummarizedInvoiceDetailResponse::class.java } override fun getResponseType(): Any? = GetSummarizedInvoice.responseType } open class SummarizedInvoiceDetailResponse { open var Id:UUID? = null open var CompanyId:UUID? = null open var CustomerId:UUID? = null open var CustomerName:String? = null open var EAccountingInvoiceId:String? = null open var Draft:Boolean? = null open var DateFrom:Date? = null open var DateTo:Date? = null open var ServiceId:Int? = null open var Status:Int? = null open var StatusName:String? = null open var ErrorMessage:String? = null open var BookingIds:ArrayList = ArrayList() open var CreatedDate:Date? = null open var UpdatedDate:Date? = null } interface ICompany { var CompanyId:UUID? }