/* Options: Date: 2025-12-06 09:44:32 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: WebixGanttJobTypeRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class WebixGanttJobType implements IConvertible { String? id; String? value; WebixGanttJobType({this.id,this.value}); WebixGanttJobType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; value = json['value']; return this; } Map toJson() => { 'id': id, 'value': value }; getTypeName() => "WebixGanttJobType"; TypeContext? context = _ctx; } class WebixGanttJobTypeResponse extends WebixGanttJobType implements IConvertible { WebixGanttJobTypeResponse(); WebixGanttJobTypeResponse.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "WebixGanttJobTypeResponse"; TypeContext? context = _ctx; } // @Route("/v1/webix/gantt/jobTypes", "GET,OPTIONS") class WebixGanttJobTypeRequest implements IReturn, IConvertible, IGet { WebixGanttJobTypeRequest(); WebixGanttJobTypeRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => WebixGanttJobTypeResponse(); getResponseTypeName() => "WebixGanttJobTypeResponse"; getTypeName() => "WebixGanttJobTypeRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'WebixGanttJobType': TypeInfo(TypeOf.Class, create:() => WebixGanttJobType()), 'WebixGanttJobTypeResponse': TypeInfo(TypeOf.Class, create:() => WebixGanttJobTypeResponse()), 'WebixGanttJobTypeRequest': TypeInfo(TypeOf.Class, create:() => WebixGanttJobTypeRequest()), });