Class: OvirtSDK4::Mac

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

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

Options Hash (opts):

  • :address (String)

    The value of attribute address.



9592
9593
9594
9595
# File 'lib/ovirtsdk4/types.rb', line 9592

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

Instance Method Details

#==(other) ⇒ Object

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



9600
9601
9602
9603
# File 'lib/ovirtsdk4/types.rb', line 9600

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

#addressString

Returns the value of the address attribute.



9569
9570
9571
# File 'lib/ovirtsdk4/types.rb', line 9569

def address
  @address
end

#address=(value) ⇒ Object

Sets the value of the address attribute.



9578
9579
9580
# File 'lib/ovirtsdk4/types.rb', line 9578

def address=(value)
  @address = value
end

#hashObject

Generates a hash value for this object.



9608
9609
9610
9611
# File 'lib/ovirtsdk4/types.rb', line 9608

def hash
  super +
  @address.hash
end