Class: Virtuozzo::SOAP::Types::Networkm::UsageType

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



854
855
856
857
858
# File 'lib/virtuozzo/soap/types/networkm.rb', line 854

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.



852
853
854
# File 'lib/virtuozzo/soap/types/networkm.rb', line 852

def free
  @free
end

#totalObject

Returns the value of attribute total.



850
851
852
# File 'lib/virtuozzo/soap/types/networkm.rb', line 850

def total
  @total
end

#usedObject

Returns the value of attribute used.



851
852
853
# File 'lib/virtuozzo/soap/types/networkm.rb', line 851

def used
  @used
end