Payment Channel
data class PaymentChannel(val id: String, val name: String, val imageUrl: String, val isAvailable: Boolean, val isOnline: Boolean, val isInstantRedirectionAvailable: Boolean, val groups: List<PaymentGroup>, val constraints: List<PaymentConstraint>)
Class storing information about payment channel
Parameters
id
id of the payment channel
name
channel display name
image Url
channel image url
is Available
whether the channel is currently available to use
is Online
whether the channel supports a online payment
is Instant Redirection Available
whether the channel supports transaction creation with instant redirection
groups
payment groups available to use with legacy transaction creation system
constraints
channel constraints
Constructors
Link copied to clipboard
fun PaymentChannel(id: String, name: String, imageUrl: String, isAvailable: Boolean, isOnline: Boolean, isInstantRedirectionAvailable: Boolean, groups: List<PaymentGroup>, constraints: List<PaymentConstraint>)