/* Options: Date: 2026-06-22 22:48:10 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: InvoicePaymentIntentRequest.* //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="/v1/invoice/{InvoiceUID}/payment-intent", Verbs="POST,OPTIONS") public static class InvoicePaymentIntentRequest implements IReturn { public UUID InvoiceUID = null; public UUID getInvoiceUID() { return InvoiceUID; } public InvoicePaymentIntentRequest setInvoiceUID(UUID value) { this.InvoiceUID = value; return this; } private static Object responseType = InvoicePaymentIntentResponse.class; public Object getResponseType() { return responseType; } } public static class InvoicePaymentIntentResponse { 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 InvoicePaymentIntentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public InvoicePaymentIntentResponse setSuccess(Boolean value) { this.Success = value; return this; } public String getClientSecret() { return ClientSecret; } public InvoicePaymentIntentResponse setClientSecret(String value) { this.ClientSecret = value; return this; } public BigDecimal getAmountDue() { return AmountDue; } public InvoicePaymentIntentResponse setAmountDue(BigDecimal value) { this.AmountDue = value; return this; } public String getMessage() { return Message; } public InvoicePaymentIntentResponse setMessage(String value) { this.Message = value; return this; } } }