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.



22112
22113
22114
22115
22116
# File 'lib/ovirtsdk4/types.rb', line 22112

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.



22121
22122
22123
22124
22125
# File 'lib/ovirtsdk4/types.rb', line 22121

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

#hashObject

Generates a hash value for this object.



22130
22131
22132
22133
22134
# File 'lib/ovirtsdk4/types.rb', line 22130

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

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


22069
22070
22071
# File 'lib/ovirtsdk4/types.rb', line 22069

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


22078
22079
22080
# File 'lib/ovirtsdk4/types.rb', line 22078

def value=(value)
  @value = value
end

#versionString

Returns the value of the version attribute.

Returns:

  • (String)


22087
22088
22089
# File 'lib/ovirtsdk4/types.rb', line 22087

def version
  @version
end

#version=(value) ⇒ Object

Sets the value of the version attribute.

Parameters:

  • value (String)


22096
22097
22098
# File 'lib/ovirtsdk4/types.rb', line 22096

def version=(value)
  @version = value
end