MerchantAccount

data class MerchantAccount(val id: String? = null, val paymentMethodOptionId: String? = null)

Represents a merchant account associated with a payment method. This class contains identification information for a merchant's payment processing account.

Parameters

id

Unique identifier for the merchant account

paymentMethodOptionId

Identifier for the payment method option

Example:

val merchantAccount = MerchantAccount(
id = "123",
paymentMethodOptionId = "visa"
)

Constructors

Link copied to clipboard
constructor(id: String? = null, paymentMethodOptionId: String? = null)

Properties

Link copied to clipboard
val id: String? = null
Link copied to clipboard