/* Options: Date: 2025-11-23 04:31:38 Version: 8.80 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: UpdateCompanyCategory.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CompanyCategoryQueryResponse { public Id: number; public Name: string; public Active: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/categories", "PUT") export class UpdateCompanyCategory implements IReturn { /** @description If of the category to update */ // @ApiMember(Description="If of the category to update") public Id: number; public Name: string; public Active: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateCompanyCategory'; } public getMethod() { return 'PUT'; } public createResponse() { return new CompanyCategoryQueryResponse(); } }