Class: OvirtSDK4::SerialNumber

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

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

  • :policy (SerialNumberPolicy)

    The value of attribute policy.

  • :value (String)

    The value of attribute value.



18394
18395
18396
18397
18398
# File 'lib/ovirtsdk4/types.rb', line 18394

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

Instance Method Details

#==(other) ⇒ Object

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



18403
18404
18405
18406
18407
# File 'lib/ovirtsdk4/types.rb', line 18403

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

#hashObject

Generates a hash value for this object.



18412
18413
18414
18415
18416
# File 'lib/ovirtsdk4/types.rb', line 18412

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

#policySerialNumberPolicy

Returns the value of the policy attribute.

Returns:



18351
18352
18353
# File 'lib/ovirtsdk4/types.rb', line 18351

def policy
  @policy
end

#policy=(value) ⇒ Object

Sets the value of the policy attribute.

Parameters:



18360
18361
18362
# File 'lib/ovirtsdk4/types.rb', line 18360

def policy=(value)
  @policy = value
end

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


18369
18370
18371
# File 'lib/ovirtsdk4/types.rb', line 18369

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


18378
18379
18380
# File 'lib/ovirtsdk4/types.rb', line 18378

def value=(value)
  @value = value
end