Class: Virtuozzo::SOAP::Types::Mailer::UsageType

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



795
796
797
798
799
# File 'lib/virtuozzo/soap/types/mailer.rb', line 795

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.



793
794
795
# File 'lib/virtuozzo/soap/types/mailer.rb', line 793

def free
  @free
end

#totalObject

Returns the value of attribute total.



791
792
793
# File 'lib/virtuozzo/soap/types/mailer.rb', line 791

def total
  @total
end

#usedObject

Returns the value of attribute used.



792
793
794
# File 'lib/virtuozzo/soap/types/mailer.rb', line 792

def used
  @used
end