/* Options: Date: 2026-08-01 04:17:57 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: RfpAddDocumentRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class RfpAddDocumentResponse implements IConvertible { ResponseStatus? ResponseStatus; int? RfpDocumentID; String? RfpDocumentUID; String? FileName; String? DocumentType; String? Status; bool? Filed; RfpAddDocumentResponse({this.ResponseStatus,this.RfpDocumentID,this.RfpDocumentUID,this.FileName,this.DocumentType,this.Status,this.Filed}); RfpAddDocumentResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); RfpDocumentID = json['RfpDocumentID']; RfpDocumentUID = json['RfpDocumentUID']; FileName = json['FileName']; DocumentType = json['DocumentType']; Status = json['Status']; Filed = json['Filed']; return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'RfpDocumentID': RfpDocumentID, 'RfpDocumentUID': RfpDocumentUID, 'FileName': FileName, 'DocumentType': DocumentType, 'Status': Status, 'Filed': Filed }; getTypeName() => "RfpAddDocumentResponse"; TypeContext? context = _ctx; } // @Route("/v1/Rfp/{RfpDocumentUID}/Documents", "POST,OPTIONS") class RfpAddDocumentRequest implements IReturn, IConvertible, IPost { String? RfpDocumentUID; String? DocumentType; RfpAddDocumentRequest({this.RfpDocumentUID,this.DocumentType}); RfpAddDocumentRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { RfpDocumentUID = json['RfpDocumentUID']; DocumentType = json['DocumentType']; return this; } Map toJson() => { 'RfpDocumentUID': RfpDocumentUID, 'DocumentType': DocumentType }; createResponse() => RfpAddDocumentResponse(); getResponseTypeName() => "RfpAddDocumentResponse"; getTypeName() => "RfpAddDocumentRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'RfpAddDocumentResponse': TypeInfo(TypeOf.Class, create:() => RfpAddDocumentResponse()), 'RfpAddDocumentRequest': TypeInfo(TypeOf.Class, create:() => RfpAddDocumentRequest()), });