Class: Virtuozzo::SOAP::Types::Filer::StatsType

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

Overview

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

avg - SOAP::SOAPLong
min - SOAP::SOAPLong
max - SOAP::SOAPLong
total - SOAP::SOAPLong
cur - SOAP::SOAPLong
soft - SOAP::SOAPLong
hard - SOAP::SOAPLong

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(avg = nil, min = nil, max = nil, total = nil, cur = nil, soft = nil, hard = nil) ⇒ StatsType

Returns a new instance of StatsType.



537
538
539
540
541
542
543
544
545
# File 'lib/virtuozzo/soap/types/filer.rb', line 537

def initialize(avg = nil, min = nil, max = nil, total = nil, cur = nil, soft = nil, hard = nil)
  @avg = avg
  @min = min
  @max = max
  @total = total
  @cur = cur
  @soft = soft
  @hard = hard
end

Instance Attribute Details

#avgObject

Returns the value of attribute avg.



529
530
531
# File 'lib/virtuozzo/soap/types/filer.rb', line 529

def avg
  @avg
end

#curObject

Returns the value of attribute cur.



533
534
535
# File 'lib/virtuozzo/soap/types/filer.rb', line 533

def cur
  @cur
end

#hardObject

Returns the value of attribute hard.



535
536
537
# File 'lib/virtuozzo/soap/types/filer.rb', line 535

def hard
  @hard
end

#maxObject

Returns the value of attribute max.



531
532
533
# File 'lib/virtuozzo/soap/types/filer.rb', line 531

def max
  @max
end

#minObject

Returns the value of attribute min.



530
531
532
# File 'lib/virtuozzo/soap/types/filer.rb', line 530

def min
  @min
end

#softObject

Returns the value of attribute soft.



534
535
536
# File 'lib/virtuozzo/soap/types/filer.rb', line 534

def soft
  @soft
end

#totalObject

Returns the value of attribute total.



532
533
534
# File 'lib/virtuozzo/soap/types/filer.rb', line 532

def total
  @total
end