Sha256: 126440f1f8fcdb440cc935f81cb7a932d00102be06c4a0724961811073e0f1e6
Contents?: true
Size: 496 Bytes
Versions: 90
Compression:
Stored size: 496 Bytes
Contents
class MLS::Video < MLS::Resource property :id, Fixnum property :vts_key, String property :video_type, String property :subject_type, String, :serialize => false property :created_at, DateTime, :serialize => :if_present property :updated_at, DateTime, :serialize => :if_present property :photo_id, Fixnum, :serialize => :if_present attr_accessor :photo end class MLS::Video::Parser < MLS::Parser def photo=(photo) @object.photo = MLS::Photo::Parser.build(photo) end end
Version data entries
90 entries across 90 versions & 1 rubygems