MerchantAccount

constructor(id: String? = null, paymentMethodOptionId: String? = null)

Parameters

id

Unique identifier for the merchant account

paymentMethodOptionId

Identifier for the payment method option

Example:

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