Class: OvirtSDK4::ProxyTicket
- Inherits:
-
Struct
- Object
- Struct
- OvirtSDK4::ProxyTicket
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary (collapse)
-
- (ProxyTicket) initialize(opts = {})
constructor
Creates a new instance of the ProxyTicket class.
-
- (String) value
Returns the value of the
value
attribute. -
- (Object) value=(value)
Sets the value of the
value
attribute.
Methods included from Type
Constructor Details
- (ProxyTicket) initialize(opts = {})
Creates a new instance of the OvirtSDK4::ProxyTicket class.
11145 11146 11147 11148 |
# File 'lib/ovirtsdk4/types.rb', line 11145 def initialize(opts = {}) super(opts) self.value = opts[:value] end |
Instance Method Details
- (String) value
Returns the value of the value
attribute.
11122 11123 11124 |
# File 'lib/ovirtsdk4/types.rb', line 11122 def value return @value end |
- (Object) value=(value)
Sets the value of the value
attribute.
11131 11132 11133 |
# File 'lib/ovirtsdk4/types.rb', line 11131 def value=(value) @value = value end |