Class: Io::Flow::V0::Models::DimensionEstimateVersion

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ DimensionEstimateVersion

Returns a new instance of DimensionEstimateVersion.



39844
39845
39846
39847
39848
39849
39850
39851
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39844

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :timestamp, :type, :dimension_estimate], 'DimensionEstimateVersion')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @timestamp = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime)
  @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::ChangeType) ? x : ::Io::Flow::V0::Models::ChangeType.apply(x))
  @dimension_estimate = (x = opts.delete(:dimension_estimate); x.is_a?(::Io::Flow::V0::Models::DimensionEstimate) ? x : ::Io::Flow::V0::Models::DimensionEstimate.new(x))
end

Instance Attribute Details

#dimension_estimateObject (readonly)

Returns the value of attribute dimension_estimate.



39842
39843
39844
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39842

def dimension_estimate
  @dimension_estimate
end

#idObject (readonly)

Returns the value of attribute id.



39842
39843
39844
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39842

def id
  @id
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



39842
39843
39844
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39842

def timestamp
  @timestamp
end

#typeObject (readonly)

Returns the value of attribute type.



39842
39843
39844
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39842

def type
  @type
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



39857
39858
39859
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39857

def copy(incoming={})
  DimensionEstimateVersion.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



39861
39862
39863
39864
39865
39866
39867
39868
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39861

def to_hash
  {
    :id => id,
    :timestamp => timestamp,
    :type => type.value,
    :dimension_estimate => dimension_estimate.to_hash
  }
end

#to_jsonObject



39853
39854
39855
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39853

def to_json
  JSON.dump(to_hash)
end