Package com.authlete.common.dto
Class AuthorizationTicketUpdateRequest
- java.lang.Object
-
- com.authlete.common.dto.AuthorizationTicketUpdateRequest
-
- All Implemented Interfaces:
Serializable
public class AuthorizationTicketUpdateRequest extends Object implements Serializable
Request to 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
-
-
Constructor Summary
Constructors Constructor Description AuthorizationTicketUpdateRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationTicketInfogetInfo()Get the information about the ticket.StringgetTicket()Get the ticket that has been issued from the/auth/authorizationAPI.AuthorizationTicketUpdateRequestsetInfo(AuthorizationTicketInfo info)Set the information about the ticket.AuthorizationTicketUpdateRequestsetTicket(String ticket)Set the ticket that has been issued from the/auth/authorizationAPI.
-
-
-
Method Detail
-
getTicket
public String getTicket()
Get the ticket that has been issued from the/auth/authorizationAPI.- Returns:
- The ticket.
-
setTicket
public AuthorizationTicketUpdateRequest setTicket(String ticket)
Set the ticket that has been issued from the/auth/authorizationAPI.- Parameters:
ticket- The ticket.- Returns:
thisobject.
-
getInfo
public AuthorizationTicketInfo getInfo()
Get the information about the ticket.- Returns:
- The information about the ticket.
-
setInfo
public AuthorizationTicketUpdateRequest setInfo(AuthorizationTicketInfo info)
Set the information about the ticket.- Parameters:
info- The information about the ticket.- Returns:
thisobject.
-
-