/* Options: Date: 2026-06-13 05:13:35 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: RfpStatusRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class RfpStatusResponse implements IConvertible { ResponseStatus? ResponseStatus; int? RfpDocumentID; String? FileName; String? Status; String? ErrorMessage; DateTime? CreatedAt; DateTime? UpdatedAt; RfpStatusResponse({this.ResponseStatus,this.RfpDocumentID,this.FileName,this.Status,this.ErrorMessage,this.CreatedAt,this.UpdatedAt}); RfpStatusResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); RfpDocumentID = json['RfpDocumentID']; FileName = json['FileName']; Status = json['Status']; ErrorMessage = json['ErrorMessage']; CreatedAt = JsonConverters.fromJson(json['CreatedAt'],'DateTime',context!); UpdatedAt = JsonConverters.fromJson(json['UpdatedAt'],'DateTime',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'RfpDocumentID': RfpDocumentID, 'FileName': FileName, 'Status': Status, 'ErrorMessage': ErrorMessage, 'CreatedAt': JsonConverters.toJson(CreatedAt,'DateTime',context!), 'UpdatedAt': JsonConverters.toJson(UpdatedAt,'DateTime',context!) }; getTypeName() => "RfpStatusResponse"; TypeContext? context = _ctx; } // @Route("/v1/Rfp/{RfpDocumentUID}/Status", "GET,OPTIONS") class RfpStatusRequest implements IReturn, IConvertible, IGet { String? RfpDocumentUID; RfpStatusRequest({this.RfpDocumentUID}); RfpStatusRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { RfpDocumentUID = json['RfpDocumentUID']; return this; } Map toJson() => { 'RfpDocumentUID': RfpDocumentUID }; createResponse() => RfpStatusResponse(); getResponseTypeName() => "RfpStatusResponse"; getTypeName() => "RfpStatusRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'RfpStatusResponse': TypeInfo(TypeOf.Class, create:() => RfpStatusResponse()), 'RfpStatusRequest': TypeInfo(TypeOf.Class, create:() => RfpStatusRequest()), });