Class: Virtuozzo::SOAP::Types::Scheduler::TaskType

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/scheduler.rb

Overview

http://www.swsoft.com/webservices/vzl/4.0.0/schedulertaskType

id - (any)
title - SOAP::SOAPBase64
description - SOAP::SOAPBase64
category - SOAP::SOAPString
triggers - Virtuozzo::SOAP::Types::Scheduler::TaskType::Triggers
next_start - (any)
packet - SOAP::SOAPBase64
disabled - SOAP::SOAPBoolean

Defined Under Namespace

Classes: Triggers

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#categoryObject

Returns the value of attribute category.



33
34
35
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 33

def category
  @category
end

#descriptionObject

Returns the value of attribute description.



32
33
34
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 32

def description
  @description
end

#disabledObject

Returns the value of attribute disabled.



37
38
39
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 37

def disabled
  @disabled
end

#idObject

Returns the value of attribute id.



30
31
32
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 30

def id
  @id
end

#next_startObject

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

#packetObject

Returns the value of attribute packet.



36
37
38
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 36

def packet
  @packet
end

#titleObject

Returns the value of attribute title.



31
32
33
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 31

def title
  @title
end

#triggersObject

Returns the value of attribute triggers.



34
35
36
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 34

def triggers
  @triggers
end