Package com.authlete.common.dto
Class CredentialOfferInfoRequest
- java.lang.Object
-
- com.authlete.common.dto.CredentialOfferInfoRequest
-
- All Implemented Interfaces:
Serializable
public class CredentialOfferInfoRequest extends Object implements Serializable
Request to 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
-
-
Constructor Summary
Constructors Constructor Description CredentialOfferInfoRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIdentifier()
Get the identifier of the credential offer.CredentialOfferInfoRequest
setIdentifier(String identifier)
Set the identifier of the credential offer.
-
-
-
Method Detail
-
getIdentifier
public String getIdentifier()
Get the identifier of the credential offer.The identifier is one assigned by Authlete's
/vci/offer/create
API. The value is a base64url string with 256-bit entropy consisting of 43 characters.This property is mandatory.
- Returns:
- The identifier of the credential offer.
-
setIdentifier
public CredentialOfferInfoRequest setIdentifier(String identifier)
Set the identifier of the credential offer.The identifier is one assigned by Authlete's
/vci/offer/create
API. The value is a base64url string with 256-bit entropy consisting of 43 characters.This property is mandatory.
- Parameters:
identifier
- The identifier of the credential offer.- Returns:
this
object.
-
-