/* Options: Date: 2024-06-26 13:38:02 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LogOut.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/eaccounting/logout", "POST") export class LogOut implements ICompany { public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LogOut'; } public getMethod() { return 'POST'; } public createResponse() {} }