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/infoAPI.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 classCredentialOfferInfoResponse.ActionThe result of the/vci/offer/infoAPI call.
-
Constructor Summary
Constructors Constructor Description CredentialOfferInfoResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CredentialOfferInfoResponse.ActiongetAction()Get the result of the/vci/offer/infoAPI call.CredentialOfferInfogetInfo()Get information about the credential offer.CredentialOfferInfoResponsesetAction(CredentialOfferInfoResponse.Action action)Set the result of the/vci/offer/infoAPI call.CredentialOfferInfoResponsesetInfo(CredentialOfferInfo info)Set information about the credential offer.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResponseHeaders, getResultCode, getResultMessage, setResponseHeaders, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getAction
public CredentialOfferInfoResponse.Action getAction()
Get the result of the/vci/offer/infoAPI call.- Returns:
- The result of the API call.
-
setAction
public CredentialOfferInfoResponse setAction(CredentialOfferInfoResponse.Action action)
Set the result of the/vci/offer/infoAPI call.- Parameters:
action- The result of the API call.- Returns:
thisobject.
-
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:
thisobject.
-
-