Class: TelephonyLineAliasPoolStruct

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

Overview

http://soapi.ovh.com/managertelephonyLineAliasPoolStruct

Constant Summary collapse

@@schema_type =
"telephonyLineAliasPoolStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["poolNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "poolNumber")]], ["service", ["SOAP::SOAPString", XSD::QName.new(nil, "service")]], ["display", ["SOAP::SOAPString", XSD::QName.new(nil, "display")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(poolNumber = nil, service = nil, display = nil) ⇒ TelephonyLineAliasPoolStruct

Returns a new instance of TelephonyLineAliasPoolStruct.



270
271
272
273
274
# File 'lib/ovhrb/manager/manager.rb', line 270

def initialize(poolNumber = nil, service = nil, display = nil)
  @poolNumber = poolNumber
  @service = service
  @display = display
end

Instance Attribute Details

#displayObject

Returns the value of attribute display.



268
269
270
# File 'lib/ovhrb/manager/manager.rb', line 268

def display
  @display
end

#poolNumberObject

Returns the value of attribute poolNumber.



266
267
268
# File 'lib/ovhrb/manager/manager.rb', line 266

def poolNumber
  @poolNumber
end

#serviceObject

Returns the value of attribute service.



267
268
269
# File 'lib/ovhrb/manager/manager.rb', line 267

def service
  @service
end