Class: DedicatedOrderStruct

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

Overview

http://soapi.ovh.com/managerdedicatedOrderStruct

Constant Summary collapse

@@schema_type =
"dedicatedOrderStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(orderPassword = nil, orderId = nil, orderUrl = nil) ⇒ DedicatedOrderStruct

Returns a new instance of DedicatedOrderStruct.



2602
2603
2604
2605
2606
# File 'lib/ovhrb/manager/manager.rb', line 2602

def initialize(orderPassword = nil, orderId = nil, orderUrl = nil)
  @orderPassword = orderPassword
  @orderId = orderId
  @orderUrl = orderUrl
end

Instance Attribute Details

#orderIdObject

Returns the value of attribute orderId.



2599
2600
2601
# File 'lib/ovhrb/manager/manager.rb', line 2599

def orderId
  @orderId
end

#orderPasswordObject

Returns the value of attribute orderPassword.



2598
2599
2600
# File 'lib/ovhrb/manager/manager.rb', line 2598

def orderPassword
  @orderPassword
end

#orderUrlObject

Returns the value of attribute orderUrl.



2600
2601
2602
# File 'lib/ovhrb/manager/manager.rb', line 2600

def orderUrl
  @orderUrl
end