Blik One Click Payment Object
August 21, 2026 ยท View on GitHub
Information used to pay using BLIK one-click flow.
Structure
BlikOneClickPaymentObject
Fields
| Name | Type | Tags | Description | Getter | Setter |
|---|---|---|---|---|---|
ConsumerReference | String | Optional | The merchant generated, unique reference serving as a primary identifier for accounts connected between Blik and a merchant. Constraints: Minimum Length: 3, Maximum Length: 64, Pattern: ^[ -~]{3,64}$ | String getConsumerReference() | setConsumerReference(String consumerReference) |
Example
import com.paypal.sdk.models.BlikOneClickPaymentObject;
BlikOneClickPaymentObject blikOneClickPaymentObject = new BlikOneClickPaymentObject.Builder()
.consumerReference("consumer_reference6")
.build();