Class: OvirtSDK4::Package

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

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

  • :name (String)

    The value of attribute name.



13090
13091
13092
13093
# File 'lib/ovirtsdk4/types.rb', line 13090

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

Instance Method Details

#==(other) ⇒ Object

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



13098
13099
13100
13101
# File 'lib/ovirtsdk4/types.rb', line 13098

def ==(other)
  super &&
  @name == other.name
end

#hashObject

Generates a hash value for this object.



13106
13107
13108
13109
# File 'lib/ovirtsdk4/types.rb', line 13106

def hash
  super +
  @name.hash
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


13067
13068
13069
# File 'lib/ovirtsdk4/types.rb', line 13067

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


13076
13077
13078
# File 'lib/ovirtsdk4/types.rb', line 13076

def name=(value)
  @name = value
end