PaymentSourceUpdatePayload

public struct PaymentSourceUpdatePayload : Equatable, Codable

Represents the payload 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
  • Initializes a new PaymentSourceUpdatePayload instance.

    Declaration

    Swift

    public init(paymentSourceId: String, displayName: String)

    Parameters

    paymentSourceId

    The ID of the payment source.

    displayName

    The display name of the payment source.