Class: Io::Flow::V0::Models::DimensionEstimateVersion
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::DimensionEstimateVersion
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#dimension_estimate ⇒ Object
readonly
Returns the value of attribute dimension_estimate.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DimensionEstimateVersion
constructor
A new instance of DimensionEstimateVersion.
- #to_hash ⇒ Object
- #to_json ⇒ Object
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_estimate ⇒ Object (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 |
#id ⇒ Object (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 |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
39842 39843 39844 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39842 def @timestamp end |
#type ⇒ Object (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_hash ⇒ Object
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 => , :type => type.value, :dimension_estimate => dimension_estimate.to_hash } end |
#to_json ⇒ Object
39853 39854 39855 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39853 def to_json JSON.dump(to_hash) end |