/* Options: Date: 2024-07-03 12:35:36 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateEaccountingNote.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class NoteQueryResponse { public Id: string; public Text: string; public CreatedUtc: string; public ModifiedUtc: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/eaccounting/notes", "POST") export class CreateEaccountingNote implements IReturn, ICompany { public Text: string; public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateEaccountingNote'; } public getMethod() { return 'POST'; } public createResponse() { return new NoteQueryResponse(); } }