/* Options: Date: 2025-07-04 10:49:21 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ValidSignNotification.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/validsign/notifications", "POST") class ValidSignNotification implements IReturnVoid, IConvertible, IPost { String? Key; String? Name; String? SessionUser; String? PackageId; String? Message; String? DocumentId; String? CreatedDate; ValidSignNotification({this.Key,this.Name,this.SessionUser,this.PackageId,this.Message,this.DocumentId,this.CreatedDate}); ValidSignNotification.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Key = json['Key']; Name = json['Name']; SessionUser = json['SessionUser']; PackageId = json['PackageId']; Message = json['Message']; DocumentId = json['DocumentId']; CreatedDate = json['CreatedDate']; return this; } Map toJson() => { 'Key': Key, 'Name': Name, 'SessionUser': SessionUser, 'PackageId': PackageId, 'Message': Message, 'DocumentId': DocumentId, 'CreatedDate': CreatedDate }; createResponse() {} getTypeName() => "ValidSignNotification"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'ValidSignNotification': TypeInfo(TypeOf.Class, create:() => ValidSignNotification()), });