module Yammer class MessageBody attr_reader :urls, :parsed, :rich attr_accessor :plain def initialize(opts={}) @plain = opts.fetch(:plain,'') @parsed = opts.fetch(:parsed,'') @rich = opts.fetch(:rich,'') @urls = opts.fetch(:urls,'') end end end