Noah Payment Method
data class NoahPaymentMethod(val id: String, val paymentMethodCategory: String, val country: String, val displayDetails: NoahPaymentMethodDisplayDetails, val customerId: String? = null, val capabilities: NoahPaymentMethodCapabilities? = null, val accountHolderDetails: NoahAccountHolderDetails? = null, val issuerDetails: NoahIssuerDetails? = null)
A saved Noah payment method available to the current customer.
Field shape matches what connect-api's getPaymentMethods returns after pascal-to-camel formatting: id, paymentMethodCategory, country, displayDetails, and optional customerId / capabilities.
Constructors
Link copied to clipboard
constructor(id: String, paymentMethodCategory: String, country: String, displayDetails: NoahPaymentMethodDisplayDetails, customerId: String? = null, capabilities: NoahPaymentMethodCapabilities? = null, accountHolderDetails: NoahAccountHolderDetails? = null, issuerDetails: NoahIssuerDetails? = null)