/* Options: Date: 2025-12-19 13:18:00 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Login.* //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/Login/{Pin}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class Login implements IReturn { public String Pin = null; public String getPin() { return Pin; } public Login setPin(String value) { this.Pin = value; return this; } private static Object responseType = LoginResponse.class; public Object getResponseType() { return responseType; } } public static class LoginResponse { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public LoginResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }