/* Options: Date: 2024-05-09 21:14:09 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CreateRefreshJwt.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route("/jwt-refresh") public static class CreateRefreshJwt implements IReturn { public String userAuthId = null; public Date jwtExpiry = null; public String getUserAuthId() { return userAuthId; } public CreateRefreshJwt setUserAuthId(String value) { this.userAuthId = value; return this; } public Date getJwtExpiry() { return jwtExpiry; } public CreateRefreshJwt setJwtExpiry(Date value) { this.jwtExpiry = value; return this; } private static Object responseType = CreateRefreshJwtResponse.class; public Object getResponseType() { return responseType; } } public static class CreateRefreshJwtResponse { public String token = null; public ResponseStatus responseStatus = null; public String getToken() { return token; } public CreateRefreshJwtResponse setToken(String value) { this.token = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public CreateRefreshJwtResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }