/* Options: Date: 2026-06-15 08:33:28 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: SkillListRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class Skill implements IConvertible { int? SkillID; String? Name; Skill({this.SkillID,this.Name}); Skill.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SkillID = json['SkillID']; Name = json['Name']; return this; } Map toJson() => { 'SkillID': SkillID, 'Name': Name }; getTypeName() => "Skill"; TypeContext? context = _ctx; } class SkillListResponse implements IConvertible { ResponseStatus? ResponseStatus; List? Skills = []; SkillListResponse({this.ResponseStatus,this.Skills}); SkillListResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); Skills = JsonConverters.fromJson(json['Skills'],'List',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'Skills': JsonConverters.toJson(Skills,'List',context!) }; getTypeName() => "SkillListResponse"; TypeContext? context = _ctx; } // @Route("/v1/Skill", "GET,OPTIONS") class SkillListRequest implements IReturn, IConvertible, IGet { SkillListRequest(); SkillListRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => SkillListResponse(); getResponseTypeName() => "SkillListResponse"; getTypeName() => "SkillListRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'Skill': TypeInfo(TypeOf.Class, create:() => Skill()), 'SkillListResponse': TypeInfo(TypeOf.Class, create:() => SkillListResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'SkillListRequest': TypeInfo(TypeOf.Class, create:() => SkillListRequest()), });