Class: OvirtSDK4::ProxyTicket

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

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

  • :value (String)

    The value of attribute value.



15554
15555
15556
15557
# File 'lib/ovirtsdk4/types.rb', line 15554

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

Instance Method Details

#==(other) ⇒ Object

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



15562
15563
15564
15565
# File 'lib/ovirtsdk4/types.rb', line 15562

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

#hashObject

Generates a hash value for this object.



15570
15571
15572
15573
# File 'lib/ovirtsdk4/types.rb', line 15570

def hash
  super +
  @value.hash
end

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


15531
15532
15533
# File 'lib/ovirtsdk4/types.rb', line 15531

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


15540
15541
15542
# File 'lib/ovirtsdk4/types.rb', line 15540

def value=(value)
  @value = value
end