Package com.authlete.common.dto
Class AuthorizationTicketInfoResponse
- java.lang.Object
-
- com.authlete.common.dto.ApiResponse
-
- com.authlete.common.dto.AuthorizationTicketInfoResponse
-
- All Implemented Interfaces:
Serializable
public class AuthorizationTicketInfoResponse extends ApiResponse
Response from Authlete's/auth/authorization/ticket/info
API.The API is used to get information about a ticket that has been issued from the
/auth/authorization
API.- Since:
- 3.88, Authlete 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AuthorizationTicketInfoResponse.Action
The result of the/auth/authorization/ticket/info
API call.
-
Constructor Summary
Constructors Constructor Description AuthorizationTicketInfoResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationTicketInfoResponse.Action
getAction()
Get the result of the/auth/authorization/ticket/info
API call.AuthorizationTicketInfo
getInfo()
Get the information about the ticket.AuthorizationTicketInfoResponse
setAction(AuthorizationTicketInfoResponse.Action action)
Set the result of the/auth/authorization/ticket/info
API call.AuthorizationTicketInfoResponse
setInfo(AuthorizationTicketInfo info)
Set the information about the ticket.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResultCode, getResultMessage, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getAction
public AuthorizationTicketInfoResponse.Action getAction()
Get the result of the/auth/authorization/ticket/info
API call.- Returns:
- The result of the API call.
-
setAction
public AuthorizationTicketInfoResponse setAction(AuthorizationTicketInfoResponse.Action action)
Set the result of the/auth/authorization/ticket/info
API call.- Parameters:
action
- The result of the API call.- Returns:
this
object.
-
getInfo
public AuthorizationTicketInfo getInfo()
Get the information about the ticket.- Returns:
- The information about the ticket.
-
setInfo
public AuthorizationTicketInfoResponse setInfo(AuthorizationTicketInfo info)
Set the information about the ticket.- Parameters:
info
- The information about the ticket.- Returns:
this
object.
-
-