DisplayStatus

@objc(GFYDisplayStatus)
public enum DisplayStatus : Int
extension DisplayStatus: CustomStringConvertible

Defines valid display status values that may be reported when the engine decides to show a message to a shopper

  • Indicates that the message was shown to the shopper

    Declaration

    Swift

    case shown
  • Indicates that the message was not shown to the shopper

    Usually this is due to the shopper being assigned to a baseline MatchingGroup.

    Declaration

    Swift

    case notShown
  • Retrieves the canonical string version of the DisplayStatus value

    Declaration

    Swift

    public var description: String { get }