Class: TelephonyNumberZoneAndPrefixStruct

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

Overview

http://soapi.ovh.com/managertelephonyNumberZoneAndPrefixStruct

Constant Summary collapse

@@schema_type =
"telephonyNumberZoneAndPrefixStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["zone", ["SOAP::SOAPString", XSD::QName.new(nil, "zone")]], ["prefix", ["SOAP::SOAPString", XSD::QName.new(nil, "prefix")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(zone = nil, prefix = nil) ⇒ TelephonyNumberZoneAndPrefixStruct

Returns a new instance of TelephonyNumberZoneAndPrefixStruct.



1279
1280
1281
1282
# File 'lib/ovhrb/manager/manager.rb', line 1279

def initialize(zone = nil, prefix = nil)
  @zone = zone
  @prefix = prefix
end

Instance Attribute Details

#prefixObject

Returns the value of attribute prefix.



1277
1278
1279
# File 'lib/ovhrb/manager/manager.rb', line 1277

def prefix
  @prefix
end

#zoneObject

Returns the value of attribute zone.



1276
1277
1278
# File 'lib/ovhrb/manager/manager.rb', line 1276

def zone
  @zone
end