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/update
API.The API is used to update 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
AuthorizationTicketUpdateResponse.Action
The result of the/auth/authorization/ticket/update
API call.
-
Constructor Summary
Constructors Constructor Description AuthorizationTicketUpdateResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationTicketUpdateResponse.Action
getAction()
Get the result of the/auth/authorization/ticket/update
API call.AuthorizationTicketInfo
getInfo()
Get the information about the ticket.AuthorizationTicketUpdateResponse
setAction(AuthorizationTicketUpdateResponse.Action action)
Set the result of the/auth/authorization/ticket/update
API call.AuthorizationTicketUpdateResponse
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 AuthorizationTicketUpdateResponse.Action getAction()
Get the result of the/auth/authorization/ticket/update
API call.- Returns:
- The result of the API call.
-
setAction
public AuthorizationTicketUpdateResponse setAction(AuthorizationTicketUpdateResponse.Action action)
Set the result of the/auth/authorization/ticket/update
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 AuthorizationTicketUpdateResponse setInfo(AuthorizationTicketInfo info)
Set the information about the ticket.- Parameters:
info
- The information about the ticket.- Returns:
this
object.
-
-