/* Options: Date: 2025-09-14 11:13:25 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: CreateEaccountingNote.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/eaccounting/notes", "POST") public class CreateEaccountingNote : IReturn, ICompany, Codable { public typealias Return = NoteQueryResponse public var text:String? public var companyId:String? required public init(){} } public class NoteQueryResponse : Codable { public var id:String? public var text:String? public var createdUtc:Date? public var modifiedUtc:Date? required public init(){} } public protocol ICompany { var companyId:String? { get set } }