ErrorInfo

public class ErrorInfo : Decodable, CustomDebugStringConvertible

A description about detailed error information

  • Declaration

    Swift

    public var debugDescription: String { get }
  • A psuedo identifier for the error returned by the API(s). “InvalidAPIKey” is example.

    Declaration

    Swift

    public let apiKey: [String]?
  • A psuedo identifier for the error returned by the API(s). “InvalidDeliveryToken” is example.

    Declaration

    Swift

    public let deliveryToken: [String]?
  • A psuedo identifier for the error returned by the API(s). “InvalidEnvironment” is example.

    Declaration

    Swift

    public let environment: [String]?
  • uid

    A psuedo identifier for the error returned by the API(s). “InvalidUID” is example.

    Declaration

    Swift

    public let uid: [String]?
  • Declaration

    Swift

    public required init(from decoder: Decoder) throws