/** * A message. * * @constructor * * @param {string} title The title of the message. */ function Message(title, body) { this.title = title; this.body = body; }