Method: OvirtSDK4::ProductInfo#==
- Defined in:
- lib/ovirtsdk4/types.rb
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
15258 15259 15260 15261 15262 15263 15264 |
# File 'lib/ovirtsdk4/types.rb', line 15258 def ==(other) super && @instance_id == other.instance_id && @name == other.name && @vendor == other.vendor && @version == other.version end |