/* Options: Date: 2025-10-27 22:29:43 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TestStripeOnceOff.* //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="/test/stripe/onceoff") public static class TestStripeOnceOff { public Boolean Sandbox = null; public String WebhookEndpoint = null; public Long Id = null; public Boolean isSandbox() { return Sandbox; } public TestStripeOnceOff setSandbox(Boolean value) { this.Sandbox = value; return this; } public String getWebhookEndpoint() { return WebhookEndpoint; } public TestStripeOnceOff setWebhookEndpoint(String value) { this.WebhookEndpoint = value; return this; } public Long getId() { return Id; } public TestStripeOnceOff setId(Long value) { this.Id = value; return this; } } }