Class: Virtuozzo::SOAP::Types::Scheduler::TaskType
- Inherits:
-
Object
- Object
- Virtuozzo::SOAP::Types::Scheduler::TaskType
- Defined in:
- lib/virtuozzo/soap/types/scheduler.rb
Overview
Defined Under Namespace
Classes: Triggers
Instance Attribute Summary collapse
-
#category ⇒ Object
Returns the value of attribute category.
-
#description ⇒ Object
Returns the value of attribute description.
-
#disabled ⇒ Object
Returns the value of attribute disabled.
-
#id ⇒ Object
Returns the value of attribute id.
-
#next_start ⇒ Object
Returns the value of attribute next_start.
-
#packet ⇒ Object
Returns the value of attribute packet.
-
#title ⇒ Object
Returns the value of attribute title.
-
#triggers ⇒ Object
Returns the value of attribute triggers.
Instance Method Summary collapse
-
#initialize(id = nil, title = nil, description = nil, category = nil, triggers = nil, next_start = nil, packet = nil, disabled = nil) ⇒ TaskType
constructor
A new instance of TaskType.
Constructor Details
#initialize(id = nil, title = nil, description = nil, category = nil, triggers = nil, next_start = nil, packet = nil, disabled = nil) ⇒ TaskType
Returns a new instance of TaskType.
39 40 41 42 43 44 45 46 47 48 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 39 def initialize(id = nil, title = nil, description = nil, category = nil, triggers = nil, next_start = nil, packet = nil, disabled = nil) @id = id @title = title @description = description @category = category @triggers = triggers @next_start = next_start @packet = packet @disabled = disabled end |
Instance Attribute Details
#category ⇒ Object
Returns the value of attribute category.
33 34 35 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 33 def category @category end |
#description ⇒ Object
Returns the value of attribute description.
32 33 34 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 32 def description @description end |
#disabled ⇒ Object
Returns the value of attribute disabled.
37 38 39 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 37 def disabled @disabled end |
#id ⇒ Object
Returns the value of attribute id.
30 31 32 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 30 def id @id end |
#next_start ⇒ Object
Returns the value of attribute next_start.
35 36 37 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 35 def next_start @next_start end |
#packet ⇒ Object
Returns the value of attribute packet.
36 37 38 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 36 def packet @packet end |
#title ⇒ Object
Returns the value of attribute title.
31 32 33 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 31 def title @title end |
#triggers ⇒ Object
Returns the value of attribute triggers.
34 35 36 |
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 34 def triggers @triggers end |