/* Options: Date: 2025-12-06 06:47:26 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebixKanbanUserRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class WebixKanbanUser { public id: number; public value: string; public image: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class WebixKanbanUserResponse extends WebixKanbanUser { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/v1/webix/kanban/users", "GET,OPTIONS") export class WebixKanbanUserRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'WebixKanbanUserRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new WebixKanbanUserResponse(); } }