/* Options: Date: 2025-09-14 18:44:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EaccountingNoteQuery.* //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/notes", Verbs="GET") open class EaccountingNoteQuery : IReturn, ICompany { override var CompanyId:UUID? = null companion object { private val responseType = NoteQueryResponse::class.java } override fun getResponseType(): Any? = EaccountingNoteQuery.responseType } open class NoteQueryResponse { open var Id:String? = null open var Text:String? = null open var CreatedUtc:Date? = null open var ModifiedUtc:Date? = null } interface ICompany { var CompanyId:UUID? }