/* Options: Date: 2025-12-06 07:08:34 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: AttachmentDownloadByConversationRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/v1/AttachmentDownloadByConversation/{AttachmentId}/{ConversationDetailId}", "GET") class AttachmentDownloadByConversationRequest implements IConvertible, IGet { String? AttachmentId; String? ConversationDetailId; AttachmentDownloadByConversationRequest({this.AttachmentId,this.ConversationDetailId}); AttachmentDownloadByConversationRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AttachmentId = json['AttachmentId']; ConversationDetailId = json['ConversationDetailId']; return this; } Map toJson() => { 'AttachmentId': AttachmentId, 'ConversationDetailId': ConversationDetailId }; getTypeName() => "AttachmentDownloadByConversationRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'AttachmentDownloadByConversationRequest': TypeInfo(TypeOf.Class, create:() => AttachmentDownloadByConversationRequest()), });