/* Options: Date: 2025-05-04 23:47:31 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AppSendFax.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/portal/fax", "POST") class AppSendFax implements IReturnVoid, IConvertible, IPost { String? accountId; String? customerId; String? endpointId; String? destination; String? notificationEmail; AppSendFax({this.accountId,this.customerId,this.endpointId,this.destination,this.notificationEmail}); AppSendFax.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; customerId = json['customerId']; endpointId = json['endpointId']; destination = json['destination']; notificationEmail = json['notificationEmail']; return this; } Map toJson() => { 'accountId': accountId, 'customerId': customerId, 'endpointId': endpointId, 'destination': destination, 'notificationEmail': notificationEmail }; createResponse() {} getTypeName() => "AppSendFax"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'AppSendFax': TypeInfo(TypeOf.Class, create:() => AppSendFax()), });