/* Options: Date: 2025-11-04 02:34:14 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: ArticleTypeQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class ArticleTypesQueryResponse { /** @description The article type id */ // @ApiMember(Description="The article type id") public Id: number; /** @description The article type name */ // @ApiMember(Description="The article type name") public Name: string; /** @description The article type description */ // @ApiMember(Description="The article type description") public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/articles/types", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class ArticleTypeQuery implements IReturn, ICompany { /** @description The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ArticleTypeQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new ArticleTypesQueryResponse(); } }