PaymentOptions

data class PaymentOptions(    val currency: String? = null,     val locale: String? = null,     val country: String? = null,     val isSandbox: Boolean = true,     val settings: PaymentProjectSettings? = PaymentProjectSettings(),     val customParameters: CustomParameters? = null,     val trackingId: TrackingId? = null)

Constructors

Link copied to clipboard
fun PaymentOptions(    currency: String? = null,     locale: String? = null,     country: String? = null,     isSandbox: Boolean = true,     settings: PaymentProjectSettings? = PaymentProjectSettings(),     customParameters: CustomParameters? = null,     trackingId: TrackingId? = null)

Properties

Link copied to clipboard
val country: String? = null
Link copied to clipboard
val currency: String? = null
Link copied to clipboard
@SerializedName(value = "custom_parameters")
val customParameters: CustomParameters? = null
Link copied to clipboard
@SerializedName(value = "is_sandbox")
val isSandbox: Boolean = true
Link copied to clipboard
val locale: String? = null
Link copied to clipboard
val settings: PaymentProjectSettings?
Link copied to clipboard
val trackingId: TrackingId? = null

An optional ID for marketing analytics (must be exactly 32 alphanumeric characters long).

Sources

Link copied to clipboard