/* Options: Date: 2025-05-06 13:47:24 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TestSignatureRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/signature/test", Verbs="GET POST") // @Route(Path="/signature/test/{key}/{text}", Verbs="GET POST") public static class TestSignatureRequest implements IReturn { public String key = null; public String text = null; public String getKey() { return key; } public TestSignatureRequest setKey(String value) { this.key = value; return this; } public String getText() { return text; } public TestSignatureRequest setText(String value) { this.text = value; return this; } private static Object responseType = TestSignatureResult.class; public Object getResponseType() { return responseType; } } public static class TestSignatureResult { public String signature = null; public String getSignature() { return signature; } public TestSignatureResult setSignature(String value) { this.signature = value; return this; } } }