/* Options: Date: 2026-09-23 01:48:49 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: BluebeamExportRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/v1/projects/{ProjectID}/bluebeam/export/{Kind}", "GET,OPTIONS") class BluebeamExportRequest implements IConvertible, IGet { int? ProjectID; String? Kind; BluebeamExportRequest({this.ProjectID,this.Kind}); BluebeamExportRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ProjectID = json['ProjectID']; Kind = json['Kind']; return this; } Map toJson() => { 'ProjectID': ProjectID, 'Kind': Kind }; getTypeName() => "BluebeamExportRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'BluebeamExportRequest': TypeInfo(TypeOf.Class, create:() => BluebeamExportRequest()), });