Class: Virtuozzo::SOAP::Types::Processm::UsageType

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/processm.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.



1418
1419
1420
1421
1422
# File 'lib/virtuozzo/soap/types/processm.rb', line 1418

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.



1416
1417
1418
# File 'lib/virtuozzo/soap/types/processm.rb', line 1416

def free
  @free
end

#totalObject

Returns the value of attribute total.



1414
1415
1416
# File 'lib/virtuozzo/soap/types/processm.rb', line 1414

def total
  @total
end

#usedObject

Returns the value of attribute used.



1415
1416
1417
# File 'lib/virtuozzo/soap/types/processm.rb', line 1415

def used
  @used
end