Class: FtpInfoReturn

Inherits:
Object
  • Object
show all
Defined in:
lib/ovhrb/manager/manager.rb

Overview

Constant Summary collapse

@@schema_type =
"ftpInfoReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["login", ["SOAP::SOAPString", XSD::QName.new(nil, "login")]], ["quota", ["SOAP::SOAPInt", XSD::QName.new(nil, "quota")]], ["maxQuota", ["SOAP::SOAPInt", XSD::QName.new(nil, "maxQuota")]], ["url", ["SOAP::SOAPString", XSD::QName.new(nil, "url")]], ["isTodo", ["SOAP::SOAPString", XSD::QName.new(nil, "isTodo")]], ["highCapacity", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "highCapacity")]], ["highSecurity", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "highSecurity")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(login = nil, quota = nil, maxQuota = nil, url = nil, isTodo = nil, highCapacity = nil, highSecurity = nil) ⇒ FtpInfoReturn

Returns a new instance of FtpInfoReturn.



4319
4320
4321
4322
4323
4324
4325
4326
4327
# File 'lib/ovhrb/manager/manager.rb', line 4319

def initialize( = nil, quota = nil, maxQuota = nil, url = nil, isTodo = nil, highCapacity = nil, highSecurity = nil)
  @login = 
  @quota = quota
  @maxQuota = maxQuota
  @url = url
  @isTodo = isTodo
  @highCapacity = highCapacity
  @highSecurity = highSecurity
end

Instance Attribute Details

#highCapacityObject

Returns the value of attribute highCapacity.



4316
4317
4318
# File 'lib/ovhrb/manager/manager.rb', line 4316

def highCapacity
  @highCapacity
end

#highSecurityObject

Returns the value of attribute highSecurity.



4317
4318
4319
# File 'lib/ovhrb/manager/manager.rb', line 4317

def highSecurity
  @highSecurity
end

#isTodoObject

Returns the value of attribute isTodo.



4315
4316
4317
# File 'lib/ovhrb/manager/manager.rb', line 4315

def isTodo
  @isTodo
end

#loginObject

Returns the value of attribute login.



4311
4312
4313
# File 'lib/ovhrb/manager/manager.rb', line 4311

def 
  @login
end

#maxQuotaObject

Returns the value of attribute maxQuota.



4313
4314
4315
# File 'lib/ovhrb/manager/manager.rb', line 4313

def maxQuota
  @maxQuota
end

#quotaObject

Returns the value of attribute quota.



4312
4313
4314
# File 'lib/ovhrb/manager/manager.rb', line 4312

def quota
  @quota
end

#urlObject

Returns the value of attribute url.



4314
4315
4316
# File 'lib/ovhrb/manager/manager.rb', line 4314

def url
  @url
end