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