Package com.authlete.common.dto
Class AuthorizationTicketInfoRequest
- java.lang.Object
-
- com.authlete.common.dto.AuthorizationTicketInfoRequest
-
- All Implemented Interfaces:
Serializable
public class AuthorizationTicketInfoRequest extends Object implements Serializable
Request to 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
-
-
Constructor Summary
Constructors Constructor Description AuthorizationTicketInfoRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTicket()
Get the ticket that has been issued from the/auth/authorization
API.AuthorizationTicketInfoRequest
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 AuthorizationTicketInfoRequest setTicket(String ticket)
Set the ticket that has been issued from the/auth/authorization
API.- Parameters:
ticket
- The ticket.- Returns:
this
object.
-
-