
/**
 * Defines the type of body of an item.
 */
export enum BodyType {
  
  /**
   * The body is formatted in HTML.
   */
  HTML = 0,
  
  /**
   * The body is in plain text.
   */
  Text = 1
}