Class: OvirtSDK4::TimeZone

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

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

  • :name (String)

    The value of attribute name.

  • :utc_offset (String)

    The value of attribute utc_offset.



22614
22615
22616
22617
22618
# File 'lib/ovirtsdk4/types.rb', line 22614

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

Instance Method Details

#==(other) ⇒ Object

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



22623
22624
22625
22626
22627
# File 'lib/ovirtsdk4/types.rb', line 22623

def ==(other)
  super &&
  @name == other.name &&
  @utc_offset == other.utc_offset
end

#hashObject

Generates a hash value for this object.



22632
22633
22634
22635
22636
# File 'lib/ovirtsdk4/types.rb', line 22632

def hash
  super +
  @name.hash +
  @utc_offset.hash
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


22571
22572
22573
# File 'lib/ovirtsdk4/types.rb', line 22571

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


22580
22581
22582
# File 'lib/ovirtsdk4/types.rb', line 22580

def name=(value)
  @name = value
end

#utc_offsetString

Returns the value of the utc_offset attribute.

Returns:

  • (String)


22589
22590
22591
# File 'lib/ovirtsdk4/types.rb', line 22589

def utc_offset
  @utc_offset
end

#utc_offset=(value) ⇒ Object

Sets the value of the utc_offset attribute.

Parameters:

  • value (String)


22598
22599
22600
# File 'lib/ovirtsdk4/types.rb', line 22598

def utc_offset=(value)
  @utc_offset = value
end