PaymentSourceProfile
public struct PaymentSourceProfile : Equatable, Codable, Hashable
Represents a payment source profile.
-
The ID of the payment source profile.
Declaration
Swift
public let id: String?
-
The display name of the payment source profile.
Declaration
Swift
public let displayName: String
-
The payment source proxies associated with the profile.
Declaration
Swift
public let paymentSourceProxies: [PaymentSourceProxy]?
-
Initializes a
PaymentSourceProfile
.Declaration
Swift
public init( id: String, displayName: String, paymentSourceProxies: [PaymentSourceProxy] )
Parameters
id
The ID of the payment source profile.
displayName
The display name of the payment source profile.
paymentSourceProxies
The payment source proxies associated with the profile.