/* Options: Date: 2025-12-06 06:07:46 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: WebixGanttLinkRequest.* //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", "GET,OPTIONS") class WebixGanttLinkRequest implements IReturn, IConvertible, IGet { WebixGanttLinkRequest(); WebixGanttLinkRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => WebixGanttLinkResponse(); getResponseTypeName() => "WebixGanttLinkResponse"; getTypeName() => "WebixGanttLinkRequest"; 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()), 'WebixGanttLinkRequest': TypeInfo(TypeOf.Class, create:() => WebixGanttLinkRequest()), });