Class: OvirtSDK4::Value
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#datum ⇒ Float
Returns the value of the
datum
attribute. -
#datum=(value) ⇒ Object
Sets the value of the
datum
attribute. -
#detail ⇒ String
Returns the value of the
detail
attribute. -
#detail=(value) ⇒ Object
Sets the value of the
detail
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#initialize(opts = {}) ⇒ Value
constructor
Creates a new instance of the Value class.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ Value
Creates a new instance of the OvirtSDK4::Value class.
24670 24671 24672 24673 24674 |
# File 'lib/ovirtsdk4/types.rb', line 24670 def initialize(opts = {}) super(opts) self.datum = opts[:datum] self.detail = opts[:detail] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
24679 24680 24681 24682 24683 |
# File 'lib/ovirtsdk4/types.rb', line 24679 def ==(other) super && @datum == other.datum && @detail == other.detail end |
#datum ⇒ Float
Returns the value of the datum
attribute.
24627 24628 24629 |
# File 'lib/ovirtsdk4/types.rb', line 24627 def datum @datum end |
#datum=(value) ⇒ Object
Sets the value of the datum
attribute.
24636 24637 24638 |
# File 'lib/ovirtsdk4/types.rb', line 24636 def datum=(value) @datum = value end |
#detail ⇒ String
Returns the value of the detail
attribute.
24645 24646 24647 |
# File 'lib/ovirtsdk4/types.rb', line 24645 def detail @detail end |
#detail=(value) ⇒ Object
Sets the value of the detail
attribute.
24654 24655 24656 |
# File 'lib/ovirtsdk4/types.rb', line 24654 def detail=(value) @detail = value end |
#hash ⇒ Object
Generates a hash value for this object.
24688 24689 24690 24691 24692 |
# File 'lib/ovirtsdk4/types.rb', line 24688 def hash super + @datum.hash + @detail.hash end |