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/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
-
-
Constructor Summary
Constructors Constructor Description CredentialOfferInfoRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetIdentifier()Get the identifier of the credential offer.CredentialOfferInfoRequestsetIdentifier(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/createAPI. 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/createAPI. 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:
thisobject.
-
-