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/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
-
-
Constructor Summary
Constructors Constructor Description AuthorizationTicketUpdateRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationTicketInfo
getInfo()
Get the information about the ticket.String
getTicket()
Get the ticket that has been issued from the/auth/authorization
API.AuthorizationTicketUpdateRequest
setInfo(AuthorizationTicketInfo info)
Set the information about the ticket.AuthorizationTicketUpdateRequest
setTicket(String ticket)
Set the ticket that has been issued from the/auth/authorization
API.
-
-
-
Method Detail
-
getTicket
public String getTicket()
Get the ticket that has been issued from the/auth/authorization
API.- Returns:
- The ticket.
-
setTicket
public AuthorizationTicketUpdateRequest setTicket(String ticket)
Set the ticket that has been issued from the/auth/authorization
API.- Parameters:
ticket
- The ticket.- Returns:
this
object.
-
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:
this
object.
-
-