Sha256: 02b775972ffda70a66d0256f56ffe3ea9af6ac26788698d7ad43c2fa96b752d4
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 KB
Contents
class MLS::TourRequest < MLS::Resource property :message, String property :id, Fixnum property :account_id, Fixnum property :listing_id, Fixnum property :message, String property :company, String property :population, String property :growing, Boolean property :created_at, DateTime, :serialize => :false property :updated_at, DateTime, :serialize => :false attr_accessor :account, :listing def claim(agent) MLS.post("/tour_requests/#{id}/claim", {:agent_id => agent.id}) do |response, code| if code == 200 true else false end end end class << self def get_all_for_account response = MLS.get('/account/tour_requests') MLS::TourRequest::Parser.parse_collection(response.body) end def find(id) response = MLS.get("/tour_requests/#{id}") MLS::TourRequest::Parser.parse(response.body) end end end class MLS::TourRequest::Parser < MLS::Parser def listing=(listing) @object.listing = MLS::Listing::Parser.build(listing) end def account=(account) @object.account = MLS::Account::Parser.build(account) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mls-0.2.19 | lib/mls/models/tour_request.rb |
mls-0.2.18 | lib/mls/models/tour_request.rb |