AppEventType

public enum AppEventType : String, Codable

Represents the sentiment type of an application event.

Used to categorize events as either positive or negative interactions, which can help in analytics, scoring systems, or feedback evaluation. Conforms to Codable for JSON encoding/decoding.

  • Indicates a positive event or interaction, such as a favorable action or feedback.

    Declaration

    Swift

    case positive
  • Indicates a negative event or interaction, such as an unfavorable action or feedback.

    Declaration

    Swift

    case negative