Class: OvirtSDK4::Status
- Inherits:
-
Struct
- Object
- Struct
- OvirtSDK4::Status
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary (collapse)
-
- (String) detail
Returns the value of the
detail
attribute. -
- (Object) detail=(value)
Sets the value of the
detail
attribute. -
- (Status) initialize(opts = {})
constructor
Creates a new instance of the Status class.
-
- (String) state
Returns the value of the
state
attribute. -
- (Object) state=(value)
Sets the value of the
state
attribute.
Methods included from Type
Constructor Details
- (Status) initialize(opts = {})
Creates a new instance of the OvirtSDK4::Status class.
14025 14026 14027 14028 14029 |
# File 'lib/ovirtsdk4/types.rb', line 14025 def initialize(opts = {}) super(opts) self.detail = opts[:detail] self.state = opts[:state] end |
Instance Method Details
- (String) detail
Returns the value of the detail
attribute.
13984 13985 13986 |
# File 'lib/ovirtsdk4/types.rb', line 13984 def detail return @detail end |
- (Object) detail=(value)
Sets the value of the detail
attribute.
13993 13994 13995 |
# File 'lib/ovirtsdk4/types.rb', line 13993 def detail=(value) @detail = value end |
- (String) state
Returns the value of the state
attribute.
14002 14003 14004 |
# File 'lib/ovirtsdk4/types.rb', line 14002 def state return @state end |
- (Object) state=(value)
Sets the value of the state
attribute.
14011 14012 14013 |
# File 'lib/ovirtsdk4/types.rb', line 14011 def state=(value) @state = value end |