PaymentMethodCollection

data class PaymentMethodCollection(val count: Int, val paymentMethods: List<PaymentMethod>)

A collection of PaymentMethod

Parameters

count

: Total count of payment methods in paymentMethods

paymentMethods

: The payment methods

Constructors

Link copied to clipboard
constructor(count: Int, paymentMethods: List<PaymentMethod>)

Properties

Link copied to clipboard
val count: Int
Link copied to clipboard