/* Options: Date: 2025-07-18 01:16:49 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InvestmentChoiceSaveRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; class InvestmentChoiceResponse implements IConvertible { bool? success; int? code; String? message; InvestmentChoiceResponse({this.success,this.code,this.message}); InvestmentChoiceResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; code = json['code']; message = json['message']; return this; } Map toJson() => { 'success': success, 'code': code, 'message': message }; getTypeName() => "InvestmentChoiceResponse"; TypeContext? context = _ctx; } // @Route("/members/{EmployeeGuid}/investmentchoice", "POST") class InvestmentChoiceSaveRequest implements IReturn, IConvertible { String? employeeGuid; dynamic? investmentChoice; InvestmentChoiceSaveRequest({this.employeeGuid,this.investmentChoice}); InvestmentChoiceSaveRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { employeeGuid = json['employeeGuid']; investmentChoice = JsonConverters.fromJson(json['investmentChoice'],'dynamic',context!); return this; } Map toJson() => { 'employeeGuid': employeeGuid, 'investmentChoice': JsonConverters.toJson(investmentChoice,'dynamic',context!) }; createResponse() => InvestmentChoiceResponse(); getResponseTypeName() => "InvestmentChoiceResponse"; getTypeName() => "InvestmentChoiceSaveRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: { 'InvestmentChoiceResponse': TypeInfo(TypeOf.Class, create:() => InvestmentChoiceResponse()), 'InvestmentChoiceSaveRequest': TypeInfo(TypeOf.Class, create:() => InvestmentChoiceSaveRequest()), });