module OpenMarket module SMS module Requests class MessageStatus attr_accessor :ticket_id def initialize(ticket_id) @ticket_id = ticket_id end def body;end def url "#{SMS::Client::BASE_URL}/mt/#{@ticket_id}/status" end def method :get end end end end end