Class: OvirtSDK4::Value

Inherits:
Struct
  • Object
show all
Defined in:
lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb

Instance Method Summary collapse

Methods included from Type

#dig, #href, #href=

Constructor Details

#initialize(opts = {}) ⇒ Value

Creates a new instance of the OvirtSDK4::Value class.

Parameters:

  • opts (Hash) (defaults to: {})

    A hash containing the attributes of the object. The keys of the hash should be symbols corresponding to the names of the attributes. The values of the hash should be the values of the attributes.

Options Hash (opts):

  • :datum (Float)

    The value of attribute datum.

  • :detail (String)

    The value of attribute detail.



23491
23492
23493
23494
23495
# File 'lib/ovirtsdk4/types.rb', line 23491

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.



23500
23501
23502
23503
23504
# File 'lib/ovirtsdk4/types.rb', line 23500

def ==(other)
  super &&
  @datum == other.datum &&
  @detail == other.detail
end

#datumFloat

Returns the value of the datum attribute.

Returns:

  • (Float)


23448
23449
23450
# File 'lib/ovirtsdk4/types.rb', line 23448

def datum
  @datum
end

#datum=(value) ⇒ Object

Sets the value of the datum attribute.

Parameters:

  • value (Float)


23457
23458
23459
# File 'lib/ovirtsdk4/types.rb', line 23457

def datum=(value)
  @datum = value
end

#detailString

Returns the value of the detail attribute.

Returns:

  • (String)


23466
23467
23468
# File 'lib/ovirtsdk4/types.rb', line 23466

def detail
  @detail
end

#detail=(value) ⇒ Object

Sets the value of the detail attribute.

Parameters:

  • value (String)


23475
23476
23477
# File 'lib/ovirtsdk4/types.rb', line 23475

def detail=(value)
  @detail = value
end

#hashObject

Generates a hash value for this object.



23509
23510
23511
23512
23513
# File 'lib/ovirtsdk4/types.rb', line 23509

def hash
  super +
  @datum.hash +
  @detail.hash
end