Class: DedicatedBasicInstallProgressStruct

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

Overview

http://soapi.ovh.com/managerdedicatedBasicInstallProgressStruct

Constant Summary collapse

@@schema_type =
"dedicatedBasicInstallProgressStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["step", ["SOAP::SOAPInt", XSD::QName.new(nil, "step")]], ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]], ["time", ["SOAP::SOAPString", XSD::QName.new(nil, "time")]], ["error", ["SOAP::SOAPString", XSD::QName.new(nil, "error")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(step = nil, comment = nil, time = nil, error = nil, status = nil) ⇒ DedicatedBasicInstallProgressStruct

Returns a new instance of DedicatedBasicInstallProgressStruct.



3381
3382
3383
3384
3385
3386
3387
# File 'lib/ovhrb/manager/manager.rb', line 3381

def initialize(step = nil, comment = nil, time = nil, error = nil, status = nil)
  @step = step
  @comment = comment
  @time = time
  @error = error
  @status = status
end

Instance Attribute Details

#commentObject

Returns the value of attribute comment.



3376
3377
3378
# File 'lib/ovhrb/manager/manager.rb', line 3376

def comment
  @comment
end

#errorObject

Returns the value of attribute error.



3378
3379
3380
# File 'lib/ovhrb/manager/manager.rb', line 3378

def error
  @error
end

#statusObject

Returns the value of attribute status.



3379
3380
3381
# File 'lib/ovhrb/manager/manager.rb', line 3379

def status
  @status
end

#stepObject

Returns the value of attribute step.



3375
3376
3377
# File 'lib/ovhrb/manager/manager.rb', line 3375

def step
  @step
end

#timeObject

Returns the value of attribute time.



3377
3378
3379
# File 'lib/ovhrb/manager/manager.rb', line 3377

def time
  @time
end