/* Options: Date: 2025-05-04 23:36:30 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: GetTrustProfile.* //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") class GetTrustProfile implements IReturn, IConvertible, IGet { String? accountId; GetTrustProfile({this.accountId}); GetTrustProfile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; return this; } Map toJson() => { 'accountId': accountId }; createResponse() => TrustProfile(); getResponseTypeName() => "TrustProfile"; getTypeName() => "GetTrustProfile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'TrustProfile': TypeInfo(TypeOf.Class, create:() => TrustProfile()), 'GetTrustProfile': TypeInfo(TypeOf.Class, create:() => GetTrustProfile()), });