/* Options: Date: 2025-05-04 23:54:31 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetTrustProfile.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/trust-profile") public static class GetTrustProfile implements IReturn { public String accountId = null; public String getAccountId() { return accountId; } public GetTrustProfile setAccountId(String value) { this.accountId = value; return this; } private static Object responseType = TrustProfile.class; public Object getResponseType() { return responseType; } } public static class TrustProfile { public String customerProfileSid = null; public String cnamProductSid = null; public String shakenStirProductSid = null; public String getCustomerProfileSid() { return customerProfileSid; } public TrustProfile setCustomerProfileSid(String value) { this.customerProfileSid = value; return this; } public String getCnamProductSid() { return cnamProductSid; } public TrustProfile setCnamProductSid(String value) { this.cnamProductSid = value; return this; } public String getShakenStirProductSid() { return shakenStirProductSid; } public TrustProfile setShakenStirProductSid(String value) { this.shakenStirProductSid = value; return this; } } }