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