/* Options: Date: 2026-08-01 04:29:02 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: BidScheduleCsvRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/v1/Rfp/{RfpDocumentUID}/BidSchedule/Csv", "GET,OPTIONS") class BidScheduleCsvRequest implements IConvertible, IGet { String? RfpDocumentUID; BidScheduleCsvRequest({this.RfpDocumentUID}); BidScheduleCsvRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { RfpDocumentUID = json['RfpDocumentUID']; return this; } Map toJson() => { 'RfpDocumentUID': RfpDocumentUID }; getTypeName() => "BidScheduleCsvRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'BidScheduleCsvRequest': TypeInfo(TypeOf.Class, create:() => BidScheduleCsvRequest()), });