/* Options: Date: 2025-12-06 08:38:36 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: WebixKanbanAttachmentRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class WebixKanbanAttachmentResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/webix/kanban/attachments", "POST,OPTIONS") export class WebixKanbanAttachmentRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'WebixKanbanAttachmentRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new WebixKanbanAttachmentResponse(); } }