CheckoutPrefill

data class CheckoutPrefill(val userPhone: String? = null, val userName: String? = null, val userEmail: String? = null) : Parcelable

Specifies prefill values to use in the checkout flow.

Applications should always try to provide as much prefill data as possible. However, all prefill entries are individually optional.

Constructors

Link copied to clipboard
constructor(userPhone: String? = null, userName: String? = null, userEmail: String? = null)

Properties

Link copied to clipboard
val userEmail: String? = null

The email to prefill in the checkout flow.

Link copied to clipboard
val userName: String? = null

The consumer name to prefill in the checkout flow.

Link copied to clipboard
val userPhone: String? = null

The phone number to prefill in the checkout flow.