Method: OvirtSDK4::EventSubscription#==
- Defined in:
- lib/ovirtsdk4/types.rb
#==(other) ⇒ Object
Returns true if self and other have the same attributes and values.
40021 40022 40023 40024 40025 40026 40027 |
# File 'lib/ovirtsdk4/types.rb', line 40021 def ==(other) super && @address == other.address && @event == other.event && @notification_method == other.notification_method && @user == other.user end |