/* Options: Date: 2024-06-26 11:01:36 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EaccountingNoteQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/eaccounting/notes", Verbs="GET") open class EaccountingNoteQuery : IReturn, ICompany { var CompanyId:UUID? = null companion object { private val responseType = NoteQueryResponse::class.java } override fun getResponseType(): Any? = EaccountingNoteQuery.responseType } open class NoteQueryResponse { var Id:String? = null var Text:String? = null var CreatedUtc:Date? = null var ModifiedUtc:Date? = null } open interface ICompany { var CompanyId:UUID? }