class OvirtSDK4::Range

def ==(other)


Returns `true` if `self` and `other` have the same attributes and values.
def ==(other)
  super &&
  @from == other.from &&
  @to == other.to
end