Class Transaction.Pos.PosEntryMode.Builder
-
- All Implemented Interfaces:
public final class Transaction.Pos.PosEntryMode.BuilderA builder for PosEntryMode.
-
-
Method Summary
-
-
Method Detail
-
card
final Transaction.Pos.PosEntryMode.Builder card(Transaction.Pos.PosEntryMode.Card card)
Card presence indicator
-
card
final Transaction.Pos.PosEntryMode.Builder card(JsonField<Transaction.Pos.PosEntryMode.Card> card)
Sets Builder.card to an arbitrary JSON value.
You should usually call Builder.card with a well-typed Card value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
cardholder
final Transaction.Pos.PosEntryMode.Builder cardholder(Transaction.Pos.PosEntryMode.Cardholder cardholder)
Cardholder presence indicator
-
cardholder
final Transaction.Pos.PosEntryMode.Builder cardholder(JsonField<Transaction.Pos.PosEntryMode.Cardholder> cardholder)
Sets Builder.cardholder to an arbitrary JSON value.
You should usually call Builder.cardholder with a well-typed Cardholder value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pan
final Transaction.Pos.PosEntryMode.Builder pan(Transaction.Pos.PosEntryMode.Pan pan)
Method of entry for the PAN
-
pan
final Transaction.Pos.PosEntryMode.Builder pan(JsonField<Transaction.Pos.PosEntryMode.Pan> pan)
Sets Builder.pan to an arbitrary JSON value.
You should usually call Builder.pan with a well-typed Pan value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pinEntered
final Transaction.Pos.PosEntryMode.Builder pinEntered(Boolean pinEntered)
Indicates whether the cardholder entered the PIN. True if the PIN was entered.
-
pinEntered
final Transaction.Pos.PosEntryMode.Builder pinEntered(JsonField<Boolean> pinEntered)
Sets Builder.pinEntered to an arbitrary JSON value.
You should usually call Builder.pinEntered with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final Transaction.Pos.PosEntryMode.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final Transaction.Pos.PosEntryMode.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final Transaction.Pos.PosEntryMode.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final Transaction.Pos.PosEntryMode.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final Transaction.Pos.PosEntryMode.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final Transaction.Pos.PosEntryMode build()
Returns an immutable instance of PosEntryMode.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.card() .cardholder() .pan() .pinEntered()
-
-
-
-