Class: DedicatedBandwidthManagementReturn

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

Overview

http://soapi.ovh.com/managerdedicatedBandwidthManagementReturn

Constant Summary collapse

@@schema_type =
"dedicatedBandwidthManagementReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["serverName", ["SOAP::SOAPString", XSD::QName.new(nil, "serverName")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(serverName = nil, id = nil, status = nil, date = nil) ⇒ DedicatedBandwidthManagementReturn

Returns a new instance of DedicatedBandwidthManagementReturn.



3182
3183
3184
3185
3186
3187
# File 'lib/ovhrb/manager/manager.rb', line 3182

def initialize(serverName = nil, id = nil, status = nil, date = nil)
  @serverName = serverName
  @id = id
  @status = status
  @date = date
end

Instance Attribute Details

#dateObject

Returns the value of attribute date.



3180
3181
3182
# File 'lib/ovhrb/manager/manager.rb', line 3180

def date
  @date
end

#idObject

Returns the value of attribute id.



3178
3179
3180
# File 'lib/ovhrb/manager/manager.rb', line 3178

def id
  @id
end

#serverNameObject

Returns the value of attribute serverName.



3177
3178
3179
# File 'lib/ovhrb/manager/manager.rb', line 3177

def serverName
  @serverName
end

#statusObject

Returns the value of attribute status.



3179
3180
3181
# File 'lib/ovhrb/manager/manager.rb', line 3179

def status
  @status
end