Class Tokenization
-
- All Implemented Interfaces:
public final class Tokenization
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classTokenization.BuilderA builder for Tokenization.
public final classTokenization.StatusThe status of the tokenization request
public final classTokenization.TokenRequestorNameThe entity that requested the tokenization. Represents a Digital Wallet or merchant.
public final classTokenization.TokenizationChannelThe channel through which the tokenization was made.
public final classTokenization.TokenizationEvent
-
Method Summary
Modifier and Type Method Description final Stringtoken()Globally unique identifier for a Tokenization final StringaccountToken()The account token associated with the card being tokenized. final StringcardToken()The card token associated with the card being tokenized. final OffsetDateTimecreatedAt()Date and time when the tokenization first occurred. final Optional<String>dpan()The dynamic pan assigned to the token by the network. final Tokenization.Statusstatus()The status of the tokenization request final Tokenization.TokenRequestorNametokenRequestorName()The entity that requested the tokenization. final StringtokenUniqueReference()The network's unique reference for the tokenization. final Tokenization.TokenizationChanneltokenizationChannel()The channel through which the tokenization was made. final OffsetDateTimeupdatedAt()Latest date and time when the tokenization was updated. final Optional<String>digitalCardArtToken()Specifies the digital card art displayed in the user’s digital wallet after tokenization. final Optional<List<Tokenization.TokenizationEvent>>events()A list of events related to the tokenization. final Optional<String>paymentAccountReferenceId()The network's unique reference for the card that is tokenized. final JsonField<String>_token()Returns the raw JSON value of token. final JsonField<String>_accountToken()Returns the raw JSON value of accountToken. final JsonField<String>_cardToken()Returns the raw JSON value of cardToken. final JsonField<OffsetDateTime>_createdAt()Returns the raw JSON value of createdAt. final JsonField<String>_dpan()Returns the raw JSON value of dpan. final JsonField<Tokenization.Status>_status()Returns the raw JSON value of status. final JsonField<Tokenization.TokenRequestorName>_tokenRequestorName()Returns the raw JSON value of tokenRequestorName. final JsonField<String>_tokenUniqueReference()Returns the raw JSON value of tokenUniqueReference. final JsonField<Tokenization.TokenizationChannel>_tokenizationChannel()Returns the raw JSON value of tokenizationChannel. final JsonField<OffsetDateTime>_updatedAt()Returns the raw JSON value of updatedAt. final JsonField<String>_digitalCardArtToken()Returns the raw JSON value of digitalCardArtToken. final JsonField<List<Tokenization.TokenizationEvent>>_events()Returns the raw JSON value of events. final JsonField<String>_paymentAccountReferenceId()Returns the raw JSON value of paymentAccountReferenceId. final Map<String, JsonValue>_additionalProperties()final Tokenization.BuildertoBuilder()final Tokenizationvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Tokenization.Builderbuilder()Returns a mutable builder for constructing an instance of Tokenization. -
-
Method Detail
-
accountToken
final String accountToken()
The account token associated with the card being tokenized.
-
createdAt
final OffsetDateTime createdAt()
Date and time when the tokenization first occurred. UTC time zone.
-
status
final Tokenization.Status status()
The status of the tokenization request
-
tokenRequestorName
final Tokenization.TokenRequestorName tokenRequestorName()
The entity that requested the tokenization. Represents a Digital Wallet or merchant.
-
tokenUniqueReference
final String tokenUniqueReference()
The network's unique reference for the tokenization.
-
tokenizationChannel
final Tokenization.TokenizationChannel tokenizationChannel()
The channel through which the tokenization was made.
-
updatedAt
final OffsetDateTime updatedAt()
Latest date and time when the tokenization was updated. UTC time zone.
-
digitalCardArtToken
final Optional<String> digitalCardArtToken()
Specifies the digital card art displayed in the user’s digital wallet after tokenization. This will be null if the tokenization was created without an associated digital card art. See Flexible Card Art Guide.
-
events
final Optional<List<Tokenization.TokenizationEvent>> events()
A list of events related to the tokenization.
-
paymentAccountReferenceId
final Optional<String> paymentAccountReferenceId()
The network's unique reference for the card that is tokenized.
-
_token
final JsonField<String> _token()
Returns the raw JSON value of token.
Unlike token, this method doesn't throw if the JSON field has an unexpected type.
-
_accountToken
final JsonField<String> _accountToken()
Returns the raw JSON value of accountToken.
Unlike accountToken, this method doesn't throw if the JSON field has an unexpected type.
-
_cardToken
final JsonField<String> _cardToken()
Returns the raw JSON value of cardToken.
Unlike cardToken, this method doesn't throw if the JSON field has an unexpected type.
-
_createdAt
final JsonField<OffsetDateTime> _createdAt()
Returns the raw JSON value of createdAt.
Unlike createdAt, this method doesn't throw if the JSON field has an unexpected type.
-
_dpan
final JsonField<String> _dpan()
Returns the raw JSON value of dpan.
Unlike dpan, this method doesn't throw if the JSON field has an unexpected type.
-
_status
final JsonField<Tokenization.Status> _status()
Returns the raw JSON value of status.
Unlike status, this method doesn't throw if the JSON field has an unexpected type.
-
_tokenRequestorName
final JsonField<Tokenization.TokenRequestorName> _tokenRequestorName()
Returns the raw JSON value of tokenRequestorName.
Unlike tokenRequestorName, this method doesn't throw if the JSON field has an unexpected type.
-
_tokenUniqueReference
final JsonField<String> _tokenUniqueReference()
Returns the raw JSON value of tokenUniqueReference.
Unlike tokenUniqueReference, this method doesn't throw if the JSON field has an unexpected type.
-
_tokenizationChannel
final JsonField<Tokenization.TokenizationChannel> _tokenizationChannel()
Returns the raw JSON value of tokenizationChannel.
Unlike tokenizationChannel, this method doesn't throw if the JSON field has an unexpected type.
-
_updatedAt
final JsonField<OffsetDateTime> _updatedAt()
Returns the raw JSON value of updatedAt.
Unlike updatedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_digitalCardArtToken
final JsonField<String> _digitalCardArtToken()
Returns the raw JSON value of digitalCardArtToken.
Unlike digitalCardArtToken, this method doesn't throw if the JSON field has an unexpected type.
-
_events
final JsonField<List<Tokenization.TokenizationEvent>> _events()
Returns the raw JSON value of events.
Unlike events, this method doesn't throw if the JSON field has an unexpected type.
-
_paymentAccountReferenceId
final JsonField<String> _paymentAccountReferenceId()
Returns the raw JSON value of paymentAccountReferenceId.
Unlike paymentAccountReferenceId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final Tokenization.Builder toBuilder()
-
validate
final Tokenization validate()
-
builder
final static Tokenization.Builder builder()
Returns a mutable builder for constructing an instance of Tokenization.
The following fields are required:
.token() .accountToken() .cardToken() .createdAt() .dpan() .status() .tokenRequestorName() .tokenUniqueReference() .tokenizationChannel() .updatedAt()
-
-
-
-