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