/* Options: Date: 2026-07-08 19:31:15 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: StaffApplicantStatusRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class PmActionResponse implements IConvertible { bool? Success; String? Message; int? NewId; ResponseStatus? ResponseStatus; PmActionResponse({this.Success,this.Message,this.NewId,this.ResponseStatus}); PmActionResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; Message = json['Message']; NewId = json['NewId']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Success': Success, 'Message': Message, 'NewId': NewId, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "PmActionResponse"; TypeContext? context = _ctx; } // @Route("/v1/staff/applicant/status", "POST,OPTIONS") class StaffApplicantStatusRequest implements IReturn, IConvertible, IPost { int? StaffApplicantID; String? Status; String? InterviewSlot; int? ProjectID; int? JobID; int? PlaceholderContactID; double? BudgetedHours; StaffApplicantStatusRequest({this.StaffApplicantID,this.Status,this.InterviewSlot,this.ProjectID,this.JobID,this.PlaceholderContactID,this.BudgetedHours}); StaffApplicantStatusRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { StaffApplicantID = json['StaffApplicantID']; Status = json['Status']; InterviewSlot = json['InterviewSlot']; ProjectID = json['ProjectID']; JobID = json['JobID']; PlaceholderContactID = json['PlaceholderContactID']; BudgetedHours = JsonConverters.toDouble(json['BudgetedHours']); return this; } Map toJson() => { 'StaffApplicantID': StaffApplicantID, 'Status': Status, 'InterviewSlot': InterviewSlot, 'ProjectID': ProjectID, 'JobID': JobID, 'PlaceholderContactID': PlaceholderContactID, 'BudgetedHours': BudgetedHours }; createResponse() => PmActionResponse(); getResponseTypeName() => "PmActionResponse"; getTypeName() => "StaffApplicantStatusRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'PmActionResponse': TypeInfo(TypeOf.Class, create:() => PmActionResponse()), 'StaffApplicantStatusRequest': TypeInfo(TypeOf.Class, create:() => StaffApplicantStatusRequest()), });