/* Options: Date: 2025-12-06 08:51:39 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebixGanttLinkChangeRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class WebixGanttLink implements IConvertible { int? id; int? source; int? target; int? type; WebixGanttLink({this.id,this.source,this.target,this.type}); WebixGanttLink.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; source = json['source']; target = json['target']; type = json['type']; return this; } Map toJson() => { 'id': id, 'source': source, 'target': target, 'type': type }; getTypeName() => "WebixGanttLink"; TypeContext? context = _ctx; } class WebixGanttLinkResponse extends WebixGanttLink implements IConvertible { WebixGanttLinkResponse(); WebixGanttLinkResponse.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "WebixGanttLinkResponse"; TypeContext? context = _ctx; } // @Route("/v1/webix/gantt/links", "POST") // @Route("/v1/webix/gantt/links/{id}", "DELETE,PUT,OPTIONS") class WebixGanttLinkChangeRequest extends WebixGanttLink implements IReturn, IConvertible, IPost { WebixGanttLinkChangeRequest(); WebixGanttLinkChangeRequest.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => WebixGanttLinkResponse(); getResponseTypeName() => "WebixGanttLinkResponse"; getTypeName() => "WebixGanttLinkChangeRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'WebixGanttLink': TypeInfo(TypeOf.Class, create:() => WebixGanttLink()), 'WebixGanttLinkResponse': TypeInfo(TypeOf.Class, create:() => WebixGanttLinkResponse()), 'WebixGanttLinkChangeRequest': TypeInfo(TypeOf.Class, create:() => WebixGanttLinkChangeRequest()), });