/**
 * Types of in-app content available in the Iterable SDK.
 */
export enum IterableInAppContentType {
  /** HTML Content */
  html = 0,
  /** Content for an alert. */
  alert = 1,
  /** Content for a banner. */
  banner = 2,
}
