Package com.authlete.common.dto
Class CredentialOfferInfoResponse
- java.lang.Object
-
- com.authlete.common.dto.ApiResponse
-
- com.authlete.common.dto.CredentialOfferInfoResponse
-
- All Implemented Interfaces:
Serializable
public class CredentialOfferInfoResponse extends ApiResponse
Response from Authlete's/vci/offer/info
API.The API is used to get information about a credential offer.
- Since:
- 3.59, Authlete 3.0
- See Also:
- OpenID for Verifiable Credential Issuance, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CredentialOfferInfoResponse.Action
The result of the/vci/offer/info
API call.
-
Constructor Summary
Constructors Constructor Description CredentialOfferInfoResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CredentialOfferInfoResponse.Action
getAction()
Get the result of the/vci/offer/info
API call.CredentialOfferInfo
getInfo()
Get information about the credential offer.CredentialOfferInfoResponse
setAction(CredentialOfferInfoResponse.Action action)
Set the result of the/vci/offer/info
API call.CredentialOfferInfoResponse
setInfo(CredentialOfferInfo info)
Set information about the credential offer.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResultCode, getResultMessage, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getAction
public CredentialOfferInfoResponse.Action getAction()
Get the result of the/vci/offer/info
API call.- Returns:
- The result of the API call.
-
setAction
public CredentialOfferInfoResponse setAction(CredentialOfferInfoResponse.Action action)
Set the result of the/vci/offer/info
API call.- Parameters:
action
- The result of the API call.- Returns:
this
object.
-
getInfo
public CredentialOfferInfo getInfo()
Get information about the credential offer.- Returns:
- Information about the credential offer.
-
setInfo
public CredentialOfferInfoResponse setInfo(CredentialOfferInfo info)
Set information about the credential offer.- Parameters:
info
- Information about the credential offer.- Returns:
this
object.
-
-