Class: Virtuozzo::SOAP::Types::Devm::UsageType

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



1502
1503
1504
1505
1506
# File 'lib/virtuozzo/soap/types/devm.rb', line 1502

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.



1500
1501
1502
# File 'lib/virtuozzo/soap/types/devm.rb', line 1500

def free
  @free
end

#totalObject

Returns the value of attribute total.



1498
1499
1500
# File 'lib/virtuozzo/soap/types/devm.rb', line 1498

def total
  @total
end

#usedObject

Returns the value of attribute used.



1499
1500
1501
# File 'lib/virtuozzo/soap/types/devm.rb', line 1499

def used
  @used
end