/* Options: Date: 2025-05-04 23:26:47 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: UpdateTrustProfile.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class TrustProfile implements IConvertible { String? customerProfileSid; String? cnamProductSid; String? shakenStirProductSid; TrustProfile({this.customerProfileSid,this.cnamProductSid,this.shakenStirProductSid}); TrustProfile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { customerProfileSid = json['customerProfileSid']; cnamProductSid = json['cnamProductSid']; shakenStirProductSid = json['shakenStirProductSid']; return this; } Map toJson() => { 'customerProfileSid': customerProfileSid, 'cnamProductSid': cnamProductSid, 'shakenStirProductSid': shakenStirProductSid }; getTypeName() => "TrustProfile"; TypeContext? context = _ctx; } // @Route("/trust-profile", "POST") class UpdateTrustProfile implements IReturn, IConvertible, IPost { String? accountId; String? customerProfileSid; String? cnamProductSid; String? shakenStirProductSid; UpdateTrustProfile({this.accountId,this.customerProfileSid,this.cnamProductSid,this.shakenStirProductSid}); UpdateTrustProfile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; customerProfileSid = json['customerProfileSid']; cnamProductSid = json['cnamProductSid']; shakenStirProductSid = json['shakenStirProductSid']; return this; } Map toJson() => { 'accountId': accountId, 'customerProfileSid': customerProfileSid, 'cnamProductSid': cnamProductSid, 'shakenStirProductSid': shakenStirProductSid }; createResponse() => TrustProfile(); getResponseTypeName() => "TrustProfile"; getTypeName() => "UpdateTrustProfile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'TrustProfile': TypeInfo(TypeOf.Class, create:() => TrustProfile()), 'UpdateTrustProfile': TypeInfo(TypeOf.Class, create:() => UpdateTrustProfile()), });