Class: OvirtSDK4::Range

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

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

  • :from (String)

    The value of attribute from.

  • :to (String)

    The value of attribute to.



16176
16177
16178
16179
16180
# File 'lib/ovirtsdk4/types.rb', line 16176

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

Instance Method Details

#==(other) ⇒ Object

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



16185
16186
16187
16188
16189
# File 'lib/ovirtsdk4/types.rb', line 16185

def ==(other)
  super &&
  @from == other.from &&
  @to == other.to
end

#fromString

Returns the value of the from attribute.

Returns:

  • (String)


16133
16134
16135
# File 'lib/ovirtsdk4/types.rb', line 16133

def from
  @from
end

#from=(value) ⇒ Object

Sets the value of the from attribute.

Parameters:

  • value (String)


16142
16143
16144
# File 'lib/ovirtsdk4/types.rb', line 16142

def from=(value)
  @from = value
end

#hashObject

Generates a hash value for this object.



16194
16195
16196
16197
16198
# File 'lib/ovirtsdk4/types.rb', line 16194

def hash
  super +
  @from.hash +
  @to.hash
end

#toString

Returns the value of the to attribute.

Returns:

  • (String)


16151
16152
16153
# File 'lib/ovirtsdk4/types.rb', line 16151

def to
  @to
end

#to=(value) ⇒ Object

Sets the value of the to attribute.

Parameters:

  • value (String)


16160
16161
16162
# File 'lib/ovirtsdk4/types.rb', line 16160

def to=(value)
  @to = value
end