Class: OvirtSDK4::Ticket

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

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

  • :expiry (Integer)

    The value of attribute expiry.

  • :value (String)

    The value of attribute value.



22538
22539
22540
22541
22542
# File 'lib/ovirtsdk4/types.rb', line 22538

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

Instance Method Details

#==(other) ⇒ Object

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



22547
22548
22549
22550
22551
# File 'lib/ovirtsdk4/types.rb', line 22547

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

#expiryInteger

Returns the value of the expiry attribute.

Returns:

  • (Integer)


22495
22496
22497
# File 'lib/ovirtsdk4/types.rb', line 22495

def expiry
  @expiry
end

#expiry=(value) ⇒ Object

Sets the value of the expiry attribute.

Parameters:

  • value (Integer)


22504
22505
22506
# File 'lib/ovirtsdk4/types.rb', line 22504

def expiry=(value)
  @expiry = value
end

#hashObject

Generates a hash value for this object.



22556
22557
22558
22559
22560
# File 'lib/ovirtsdk4/types.rb', line 22556

def hash
  super +
  @expiry.hash +
  @value.hash
end

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


22513
22514
22515
# File 'lib/ovirtsdk4/types.rb', line 22513

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


22522
22523
22524
# File 'lib/ovirtsdk4/types.rb', line 22522

def value=(value)
  @value = value
end