/* Options: Date: 2025-06-07 16:18:53 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetTokenBiRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/Utilidades/ObtenerTokenBI") public static class GetTokenBiRQ implements IReturn { private static Object responseType = GetTokenBiRS.class; public Object getResponseType() { return responseType; } } public static class GetTokenBiRS { public String token_type = null; public String scope = null; public String resource = null; public String access_token = null; public String refresh_token = null; public String id_token = null; public String getTokenType() { return token_type; } public GetTokenBiRS setTokenType(String value) { this.token_type = value; return this; } public String getScope() { return scope; } public GetTokenBiRS setScope(String value) { this.scope = value; return this; } public String getResource() { return resource; } public GetTokenBiRS setResource(String value) { this.resource = value; return this; } public String getAccessToken() { return access_token; } public GetTokenBiRS setAccessToken(String value) { this.access_token = value; return this; } public String getRefreshToken() { return refresh_token; } public GetTokenBiRS setRefreshToken(String value) { this.refresh_token = value; return this; } public String getIdToken() { return id_token; } public GetTokenBiRS setIdToken(String value) { this.id_token = value; return this; } } }