/* Options: Date: 2026-06-22 21:45:15 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PortalPaymentIntentRequest.* //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="/portal/{Token}/payment-intent", Verbs="POST,OPTIONS") public static class PortalPaymentIntentRequest implements IReturn { public String Token = null; public String getToken() { return Token; } public PortalPaymentIntentRequest setToken(String value) { this.Token = value; return this; } private static Object responseType = PortalPaymentIntentResponse.class; public Object getResponseType() { return responseType; } } public static class PortalPaymentIntentResponse { public ResponseStatus ResponseStatus = null; public Boolean Success = null; public String ClientSecret = null; public BigDecimal AmountDue = null; public String Message = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public PortalPaymentIntentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public PortalPaymentIntentResponse setSuccess(Boolean value) { this.Success = value; return this; } public String getClientSecret() { return ClientSecret; } public PortalPaymentIntentResponse setClientSecret(String value) { this.ClientSecret = value; return this; } public BigDecimal getAmountDue() { return AmountDue; } public PortalPaymentIntentResponse setAmountDue(BigDecimal value) { this.AmountDue = value; return this; } public String getMessage() { return Message; } public PortalPaymentIntentResponse setMessage(String value) { this.Message = value; return this; } } }