/* Options: Date: 2024-07-03 13:19:09 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateEaccountingNote.* //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="POST") open class CreateEaccountingNote : IReturn, ICompany { var Text:String? = null var CompanyId:UUID? = null companion object { private val responseType = NoteQueryResponse::class.java } override fun getResponseType(): Any? = CreateEaccountingNote.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? }