Class: OvirtSDK4::SystemOptionValue

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 = {}) ⇒ SystemOptionValue

Creates a new instance of the OvirtSDK4::SystemOptionValue 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):

  • :value (String)

    The value of attribute value.

  • :version (String)

    The value of attribute version.



23020
23021
23022
23023
23024
# File 'lib/ovirtsdk4/types.rb', line 23020

def initialize(opts = {})
  super(opts)
  self.value = opts[:value]
  self.version = opts[:version]
end

Instance Method Details

#==(other) ⇒ Object

Returns true if self and other have the same attributes and values.



23029
23030
23031
23032
23033
# File 'lib/ovirtsdk4/types.rb', line 23029

def ==(other)
  super &&
  @value == other.value &&
  @version == other.version
end

#hashObject

Generates a hash value for this object.



23038
23039
23040
23041
23042
# File 'lib/ovirtsdk4/types.rb', line 23038

def hash
  super +
  @value.hash +
  @version.hash
end

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


22977
22978
22979
# File 'lib/ovirtsdk4/types.rb', line 22977

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


22986
22987
22988
# File 'lib/ovirtsdk4/types.rb', line 22986

def value=(value)
  @value = value
end

#versionString

Returns the value of the version attribute.

Returns:

  • (String)


22995
22996
22997
# File 'lib/ovirtsdk4/types.rb', line 22995

def version
  @version
end

#version=(value) ⇒ Object

Sets the value of the version attribute.

Parameters:

  • value (String)


23004
23005
23006
# File 'lib/ovirtsdk4/types.rb', line 23004

def version=(value)
  @version = value
end