Class: Virtuozzo::SOAP::Types::Scheduler::UsageType

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

Overview

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

total - SOAP::SOAPLong
used - SOAP::SOAPLong
free - SOAP::SOAPLong

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(total = nil, used = nil, free = nil) ⇒ UsageType

Returns a new instance of UsageType.



933
934
935
936
937
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 933

def initialize(total = nil, used = nil, free = nil)
  @total = total
  @used = used
  @free = free
end

Instance Attribute Details

#freeObject

Returns the value of attribute free.



931
932
933
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 931

def free
  @free
end

#totalObject

Returns the value of attribute total.



929
930
931
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 929

def total
  @total
end

#usedObject

Returns the value of attribute used.



930
931
932
# File 'lib/virtuozzo/soap/types/scheduler.rb', line 930

def used
  @used
end