/* Options: Date: 2025-07-18 01:27:50 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: DeleteMemberDocument.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; class MemberDocumentResponse implements IConvertible { bool? success; String? message; MemberDocumentResponse({this.success,this.message}); MemberDocumentResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; message = json['message']; return this; } Map toJson() => { 'success': success, 'message': message }; getTypeName() => "MemberDocumentResponse"; TypeContext? context = _ctx; } // @Route("/members/{EmployeeGuid}/documents", "DELETE") class DeleteMemberDocument implements IReturn, IConvertible { String? employeeGuid; String? document; DeleteMemberDocument({this.employeeGuid,this.document}); DeleteMemberDocument.fromJson(Map json) { fromMap(json); } fromMap(Map json) { employeeGuid = json['employeeGuid']; document = json['document']; return this; } Map toJson() => { 'employeeGuid': employeeGuid, 'document': document }; createResponse() => MemberDocumentResponse(); getResponseTypeName() => "MemberDocumentResponse"; getTypeName() => "DeleteMemberDocument"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: { 'MemberDocumentResponse': TypeInfo(TypeOf.Class, create:() => MemberDocumentResponse()), 'DeleteMemberDocument': TypeInfo(TypeOf.Class, create:() => DeleteMemberDocument()), });