P2PPayment

public struct P2PPayment : Decodable, Identifiable, Equatable

Represents a person-to-person (P2P) payment.

  • id

    The ID of the payment.

    Declaration

    Swift

    public let id: String
  • The amount of the payment.

    Declaration

    Swift

    public let amount: PaymentAmount
  • The message associated with the payment.

    Declaration

    Swift

    public let message: String
  • The ID of the payment means used by the payer.

    Declaration

    Swift

    public let payerPaymentMeansId: String?
  • The proxy hash of the payee.

    Declaration

    Swift

    public let payeeProxyHash: String?
  • The status of the payment.

    Declaration

    Swift

    public let status: String
  • The embedded data within the payment.

    Declaration

    Swift

    public let embedded: Embedded
  • Represents the embedded data within the payment.

    See more

    Declaration

    Swift

    public struct Embedded : Decodable, Equatable