PaymentOptions

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

Constructors

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

Properties

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?

Sources

Link copied to clipboard