TransactionStatusError

public struct TransactionStatusError : Decodable, Sendable

Internal error used within some of the responses.

  • Short unique string representing the type of error

    Declaration

    Swift

    public let code: String
  • Human friendly summary of the error

    Declaration

    Swift

    public let message: String
  • (optional) More data related to the error if available

    Declaration

    Swift

    public let data: String?
  • Declaration

    Swift

    public init(from decoder: Decoder) throws