Sha256: b1a0c27fb263241494b6ac647f731f2b9e049d32a11f342e5b2cd685aba323dd
Contents?: true
Size: 506 Bytes
Versions: 26
Compression:
Stored size: 506 Bytes
Contents
module TheCity class MetricMeasurement < ApiObject tc_attr_accessor :id, :created_at, :value # Constructor. # # @param json_data JSON data of the role. def initialize(json_data) initialize_from_json_object(json_data) end # Save this object. # # @return True on success, otherwise false. def save writer = MetricMeasurementWriter.new(self.to_attributes) writer.save_feed end end end
Version data entries
26 entries across 26 versions & 1 rubygems