ErrorDetails

public struct ErrorDetails : Decodable, Equatable

Undocumented

  • 3DS server transaction ID related to the error

    Declaration

    Swift

    public let threeDSServerTransId: String?
  • Numeric or string code identifying the error

    Declaration

    Swift

    public let errorCode: String?
  • The component that caused the error (e.g., SDK, DS, ACS)

    Declaration

    Swift

    public let errorComponent: String?
  • Human-readable description of the error

    Declaration

    Swift

    public let errorDescription: String?
  • Undocumented

    Declaration

    Swift

    public init(
        threeDSServerTransId: String? = nil,
        errorCode: String? = nil,
        errorComponent: String? = nil,
        errorDescription: String? = nil
    )