/* Options: Date: 2026-05-09 17:12:18 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EtsyGetAuthLinkRequest.* //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="/fibuscan/Onlinehandel/EtsyGetAuthLink", Verbs="GET, POST") public static class EtsyGetAuthLinkRequest implements IReturn { public String OAUTH_CONSUMER_KEY = null; public String OAUTH_CONSUMER_SECRET = null; public String oauth_token = null; public String oauth_verifier = null; public Long bankindex = null; public String getOauthConsumerKey() { return OAUTH_CONSUMER_KEY; } public EtsyGetAuthLinkRequest setOauthConsumerKey(String value) { this.OAUTH_CONSUMER_KEY = value; return this; } public String getOauthConsumerSecret() { return OAUTH_CONSUMER_SECRET; } public EtsyGetAuthLinkRequest setOauthConsumerSecret(String value) { this.OAUTH_CONSUMER_SECRET = value; return this; } public String getOauthToken() { return oauth_token; } public EtsyGetAuthLinkRequest setOauthToken(String value) { this.oauth_token = value; return this; } public String getOauthVerifier() { return oauth_verifier; } public EtsyGetAuthLinkRequest setOauthVerifier(String value) { this.oauth_verifier = value; return this; } public Long getBankindex() { return bankindex; } public EtsyGetAuthLinkRequest setBankindex(Long value) { this.bankindex = value; return this; } private static Object responseType = EtsyGetAuthLinkResponse.class; public Object getResponseType() { return responseType; } } public static class EtsyGetAuthLinkResponse { public String EtsyAuthorizationLink = null; public String error = null; public String request_token = null; public String Token = null; public String TokenSecret = null; public String getEtsyAuthorizationLink() { return EtsyAuthorizationLink; } public EtsyGetAuthLinkResponse setEtsyAuthorizationLink(String value) { this.EtsyAuthorizationLink = value; return this; } public String getError() { return error; } public EtsyGetAuthLinkResponse setError(String value) { this.error = value; return this; } public String getRequestToken() { return request_token; } public EtsyGetAuthLinkResponse setRequestToken(String value) { this.request_token = value; return this; } public String getToken() { return Token; } public EtsyGetAuthLinkResponse setToken(String value) { this.Token = value; return this; } public String getTokenSecret() { return TokenSecret; } public EtsyGetAuthLinkResponse setTokenSecret(String value) { this.TokenSecret = value; return this; } } }