/* Options: Date: 2026-06-01 15:13:12 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Authentication.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/Authentication/{ClientKey}") public static class Authentication implements IReturn { public String ClientKey = null; public String SecretKey = null; public String getClientKey() { return ClientKey; } public Authentication setClientKey(String value) { this.ClientKey = value; return this; } public String getSecretKey() { return SecretKey; } public Authentication setSecretKey(String value) { this.SecretKey = value; return this; } private static Object responseType = AuthenticationResponse.class; public Object getResponseType() { return responseType; } } public static class AuthenticationResponse { public String Result = null; public String getResult() { return Result; } public AuthenticationResponse setResult(String value) { this.Result = value; return this; } } }