BidError

public enum BidError : Swift.Error, Equatable
extension BidError: LocalizedError

Errors from bidding

  • The app did not request a single advertising slot.

    Declaration

    Swift

    case noSlot
  • The app requested more than 10 ad slots.

    Declaration

    Swift

    case tooManySlots
  • An HTTP error occurred.

    Declaration

    Swift

    case httpError(statusCode: Int, localizedMessage: String)
  • An unexpected value was encountered in the Content-Type header.

    Declaration

    Swift

    case unsupportedContentType(String?)
  • The format of the reponse could not be parsed.

    Declaration

    Swift

    case unsupportedFormat
  • No ad is available for this ad slot.

    Declaration

    Swift

    case noFill
  • Declaration

    Swift

    public var errorDescription: String? { get }