PaymentSourceUpdateResponse
public struct PaymentSourceUpdateResponse : Codable, Equatable
Represents the response for updating a payment source.
-
The ID of the payment source.
Declaration
Swift
public let paymentSourceID: String
-
The display name of the payment source.
Declaration
Swift
public let displayName: String
-
HAL links related to the payment source update.
Declaration
Swift
public let links: PaymentSourceUpdateLinks
-
The embedded data associated with the payment source update.
Declaration
Swift
public let embedded: Embedded?
-
Initializes a new
PaymentSourceUpdateResponse
instance.Declaration
Swift
public init( paymentSourceID: String, displayName: String, links: PaymentSourceUpdateLinks, embedded: Embedded? )
Parameters
paymentSourceID
The ID of the payment source.
displayName
The display name of the payment source.
links
HAL links related to the payment source update.
embedded
The embedded data associated with the payment source update.
-
Represents the embedded data within the payment source update response.
See moreDeclaration
Swift
struct Embedded : Codable, Equatable
-
Represents HAL links related to the payment source update response.
See moreDeclaration
Swift
struct PaymentSourceUpdateLinks : Codable, Equatable, Hashable