Class: OvirtSDK4::Bookmark

Inherits:
Identified 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 = {}) ⇒ Bookmark

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

  • :comment (String)

    The value of attribute comment.

  • :description (String)

    The value of attribute description.

  • :id (String)

    The value of attribute id.

  • :name (String)

    The value of attribute name.

  • :value (String)

    The value of attribute value.



30836
30837
30838
30839
# File 'lib/ovirtsdk4/types.rb', line 30836

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.



30844
30845
30846
30847
# File 'lib/ovirtsdk4/types.rb', line 30844

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

#commentString

Returns the value of the comment attribute.

Returns:

  • (String)


30733
30734
30735
# File 'lib/ovirtsdk4/types.rb', line 30733

def comment
  @comment
end

#comment=(value) ⇒ Object

Sets the value of the comment attribute.

Parameters:

  • value (String)


30742
30743
30744
# File 'lib/ovirtsdk4/types.rb', line 30742

def comment=(value)
  @comment = value
end

#descriptionString

Returns the value of the description attribute.

Returns:

  • (String)


30751
30752
30753
# File 'lib/ovirtsdk4/types.rb', line 30751

def description
  @description
end

#description=(value) ⇒ Object

Sets the value of the description attribute.

Parameters:

  • value (String)


30760
30761
30762
# File 'lib/ovirtsdk4/types.rb', line 30760

def description=(value)
  @description = value
end

#hashObject

Generates a hash value for this object.



30852
30853
30854
30855
# File 'lib/ovirtsdk4/types.rb', line 30852

def hash
  super +
  @value.hash
end

#idString

Returns the value of the id attribute.

Returns:

  • (String)


30769
30770
30771
# File 'lib/ovirtsdk4/types.rb', line 30769

def id
  @id
end

#id=(value) ⇒ Object

Sets the value of the id attribute.

Parameters:

  • value (String)


30778
30779
30780
# File 'lib/ovirtsdk4/types.rb', line 30778

def id=(value)
  @id = value
end

#nameString

Returns the value of the name attribute.

Returns:

  • (String)


30787
30788
30789
# File 'lib/ovirtsdk4/types.rb', line 30787

def name
  @name
end

#name=(value) ⇒ Object

Sets the value of the name attribute.

Parameters:

  • value (String)


30796
30797
30798
# File 'lib/ovirtsdk4/types.rb', line 30796

def name=(value)
  @name = value
end

#valueString

Returns the value of the value attribute.

Returns:

  • (String)


30805
30806
30807
# File 'lib/ovirtsdk4/types.rb', line 30805

def value
  @value
end

#value=(value) ⇒ Object

Sets the value of the value attribute.

Parameters:

  • value (String)


30814
30815
30816
# File 'lib/ovirtsdk4/types.rb', line 30814

def value=(value)
  @value = value
end