/* Options: Date: 2026-07-08 21:12: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: StaffQuickFillRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class StaffQuickFillRow implements IConvertible { String? PositionTag; String? Name; bool? Filled; String? Reason; StaffQuickFillRow({this.PositionTag,this.Name,this.Filled,this.Reason}); StaffQuickFillRow.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PositionTag = json['PositionTag']; Name = json['Name']; Filled = json['Filled']; Reason = json['Reason']; return this; } Map toJson() => { 'PositionTag': PositionTag, 'Name': Name, 'Filled': Filled, 'Reason': Reason }; getTypeName() => "StaffQuickFillRow"; TypeContext? context = _ctx; } class StaffQuickFillResponse implements IConvertible { ResponseStatus? ResponseStatus; List? Rows = []; int? FilledCount; int? SkippedCount; StaffQuickFillResponse({this.ResponseStatus,this.Rows,this.FilledCount,this.SkippedCount}); StaffQuickFillResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); Rows = JsonConverters.fromJson(json['Rows'],'List',context!); FilledCount = json['FilledCount']; SkippedCount = json['SkippedCount']; return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'Rows': JsonConverters.toJson(Rows,'List',context!), 'FilledCount': FilledCount, 'SkippedCount': SkippedCount }; getTypeName() => "StaffQuickFillResponse"; TypeContext? context = _ctx; } // @Route("/v1/staff/quickfill", "POST,OPTIONS") class StaffQuickFillRequest implements IReturn, IConvertible, IPost { String? ProjectUID; StaffQuickFillRequest({this.ProjectUID}); StaffQuickFillRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ProjectUID = json['ProjectUID']; return this; } Map toJson() => { 'ProjectUID': ProjectUID }; createResponse() => StaffQuickFillResponse(); getResponseTypeName() => "StaffQuickFillResponse"; getTypeName() => "StaffQuickFillRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'StaffQuickFillRow': TypeInfo(TypeOf.Class, create:() => StaffQuickFillRow()), 'StaffQuickFillResponse': TypeInfo(TypeOf.Class, create:() => StaffQuickFillResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'StaffQuickFillRequest': TypeInfo(TypeOf.Class, create:() => StaffQuickFillRequest()), });