Interface MasterCardAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MasterCardAttributes.Builder,MasterCardAttributes>,SdkBuilder<MasterCardAttributes.Builder,MasterCardAttributes>,SdkPojo
- Enclosing class:
- MasterCardAttributes
public static interface MasterCardAttributes.Builder extends SdkPojo, CopyableBuilder<MasterCardAttributes.Builder,MasterCardAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MasterCardAttributes.BuilderapplicationCryptogram(String applicationCryptogram)The application cryptogram for the current transaction that is provided by the terminal during transaction processing.MasterCardAttributes.BuildermajorKeyDerivationMode(String majorKeyDerivationMode)The method to use when deriving the master key for the payment card.MasterCardAttributes.BuildermajorKeyDerivationMode(MajorKeyDerivationMode majorKeyDerivationMode)The method to use when deriving the master key for the payment card.MasterCardAttributes.BuilderpanSequenceNumber(String panSequenceNumber)A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).MasterCardAttributes.BuilderprimaryAccountNumber(String primaryAccountNumber)The Primary Account Number (PAN) of the cardholder.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
majorKeyDerivationMode
MasterCardAttributes.Builder majorKeyDerivationMode(String majorKeyDerivationMode)
The method to use when deriving the master key for the payment card.
- Parameters:
majorKeyDerivationMode- The method to use when deriving the master key for the payment card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MajorKeyDerivationMode,MajorKeyDerivationMode
-
majorKeyDerivationMode
MasterCardAttributes.Builder majorKeyDerivationMode(MajorKeyDerivationMode majorKeyDerivationMode)
The method to use when deriving the master key for the payment card.
- Parameters:
majorKeyDerivationMode- The method to use when deriving the master key for the payment card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MajorKeyDerivationMode,MajorKeyDerivationMode
-
primaryAccountNumber
MasterCardAttributes.Builder primaryAccountNumber(String primaryAccountNumber)
The Primary Account Number (PAN) of the cardholder.
- Parameters:
primaryAccountNumber- The Primary Account Number (PAN) of the cardholder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
panSequenceNumber
MasterCardAttributes.Builder panSequenceNumber(String panSequenceNumber)
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN). Typically 00 is used, if no value is provided by the terminal.
- Parameters:
panSequenceNumber- A number that identifies and differentiates payment cards with the same Primary Account Number (PAN). Typically 00 is used, if no value is provided by the terminal.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationCryptogram
MasterCardAttributes.Builder applicationCryptogram(String applicationCryptogram)
The application cryptogram for the current transaction that is provided by the terminal during transaction processing.
- Parameters:
applicationCryptogram- The application cryptogram for the current transaction that is provided by the terminal during transaction processing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-