piglop-ovh-rb 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -52,7 +52,7 @@ Rake::RDocTask.new do |rdoc|
52
52
  end
53
53
 
54
54
  namespace :wsdl do
55
- task :update => [:dump, :camelize]
55
+ task :update => [:dump]
56
56
 
57
57
  output = "lib/ovhrb/manager"
58
58
 
@@ -65,15 +65,4 @@ namespace :wsdl do
65
65
  system program, "--wsdl", "https://www.ovh.com/soapi/soapi-re-1.9.wsdl", "--type", "client", "--force"
66
66
  end
67
67
  end
68
-
69
- task :camelize do
70
- require 'lib/ovhrb/core_additions'
71
- manager = File.join(output, 'manager.rb')
72
- content = File.read(manager)
73
- content.gsub!(/attr_accessor :(\w+)/) { x = $1.underscore; "attr_accessor :#{x}" }
74
- content.gsub!(/(\w+) = nil/) { x = $1.underscore; "#{x} = nil" }
75
- content.gsub!(/@(\w+) = (\w+)/) { x = $1.underscore; "@#{x} = #{x}" }
76
- File.open(manager, 'w') { |f| f.write content }
77
- raise "Invalid syntax" unless system('ruby', '-c', manager)
78
- end
79
68
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
@@ -18,7 +18,7 @@ OvhRb::Config.new(config_file) do |config|
18
18
  failovers = config.dedicated_failover_list(server)
19
19
  failovers.each do |server_failover|
20
20
  if server_failover.ip == failover
21
- actual_route = server_failover.routed_to
21
+ actual_route = server_failover.routedTo
22
22
  if actual_route != expected_route
23
23
  config.dedicated_failover_update server, failover, expected_route
24
24
  end
@@ -37,14 +37,14 @@ class SupportThreadMessageDetailStruct
37
37
  attr_accessor :date
38
38
  attr_accessor :unread
39
39
  attr_accessor :type
40
- attr_accessor :report_reason
40
+ attr_accessor :reportReason
41
41
 
42
- def initialize(id = nil, date = nil, unread = nil, type = nil, report_reason = nil)
42
+ def initialize(id = nil, date = nil, unread = nil, type = nil, reportReason = nil)
43
43
  @id = id
44
44
  @date = date
45
45
  @unread = unread
46
46
  @type = type
47
- @report_reason = report_reason
47
+ @reportReason = reportReason
48
48
  end
49
49
  end
50
50
 
@@ -58,15 +58,15 @@ class SupportThreadTreeReturn
58
58
  attr_accessor :subject
59
59
  attr_accessor :domain
60
60
  attr_accessor :closed
61
- attr_accessor :report_reason
61
+ attr_accessor :reportReason
62
62
  attr_accessor :messages
63
63
 
64
- def initialize(id = nil, subject = nil, domain = nil, closed = nil, report_reason = nil, messages = nil)
64
+ def initialize(id = nil, subject = nil, domain = nil, closed = nil, reportReason = nil, messages = nil)
65
65
  @id = id
66
66
  @subject = subject
67
67
  @domain = domain
68
68
  @closed = closed
69
- @report_reason = report_reason
69
+ @reportReason = reportReason
70
70
  @messages = messages
71
71
  end
72
72
  end
@@ -79,22 +79,22 @@ class SupportMessageDetailReturn
79
79
 
80
80
  attr_accessor :id
81
81
  attr_accessor :thread
82
- attr_accessor :unread_thread
83
- attr_accessor :from_email
84
- attr_accessor :date_sent
82
+ attr_accessor :unreadThread
83
+ attr_accessor :fromEmail
84
+ attr_accessor :dateSent
85
85
  attr_accessor :subject
86
86
  attr_accessor :body
87
- attr_accessor :report_reason
87
+ attr_accessor :reportReason
88
88
 
89
- def initialize(id = nil, thread = nil, unread_thread = nil, from_email = nil, date_sent = nil, subject = nil, body = nil, report_reason = nil)
89
+ def initialize(id = nil, thread = nil, unreadThread = nil, fromEmail = nil, dateSent = nil, subject = nil, body = nil, reportReason = nil)
90
90
  @id = id
91
91
  @thread = thread
92
- @unread_thread = unread_thread
93
- @from_email = from_email
94
- @date_sent = date_sent
92
+ @unreadThread = unreadThread
93
+ @fromEmail = fromEmail
94
+ @dateSent = dateSent
95
95
  @subject = subject
96
96
  @body = body
97
- @report_reason = report_reason
97
+ @reportReason = reportReason
98
98
  end
99
99
  end
100
100
 
@@ -132,14 +132,14 @@ class SupportSendMessageReturn
132
132
  @@schema_ns = "http://soapi.ovh.com/manager"
133
133
  @@schema_element = [["threadId", ["SOAP::SOAPInt", XSD::QName.new(nil, "threadId")]], ["messageId", ["SOAP::SOAPInt", XSD::QName.new(nil, "messageId")]], ["dateTime", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTime")]]]
134
134
 
135
- attr_accessor :thread_id
136
- attr_accessor :message_id
137
- attr_accessor :date_time
135
+ attr_accessor :threadId
136
+ attr_accessor :messageId
137
+ attr_accessor :dateTime
138
138
 
139
- def initialize(thread_id = nil, message_id = nil, date_time = nil)
140
- @thread_id = thread_id
141
- @message_id = message_id
142
- @date_time = date_time
139
+ def initialize(threadId = nil, messageId = nil, dateTime = nil)
140
+ @threadId = threadId
141
+ @messageId = messageId
142
+ @dateTime = dateTime
143
143
  end
144
144
  end
145
145
 
@@ -179,22 +179,22 @@ class TelephonyBillingAccountStruct
179
179
 
180
180
  attr_accessor :description
181
181
  attr_accessor :mobile
182
- attr_accessor :mobile_destination
183
- attr_accessor :expiration_date
182
+ attr_accessor :mobileDestination
183
+ attr_accessor :expirationDate
184
184
  attr_accessor :version
185
185
  attr_accessor :trusted
186
- attr_accessor :pending_action
187
- attr_accessor :description_user
186
+ attr_accessor :pendingAction
187
+ attr_accessor :descriptionUser
188
188
 
189
- def initialize(description = nil, mobile = nil, mobile_destination = nil, expiration_date = nil, version = nil, trusted = nil, pending_action = nil, description_user = nil)
189
+ def initialize(description = nil, mobile = nil, mobileDestination = nil, expirationDate = nil, version = nil, trusted = nil, pendingAction = nil, descriptionUser = nil)
190
190
  @description = description
191
191
  @mobile = mobile
192
- @mobile_destination = mobile_destination
193
- @expiration_date = expiration_date
192
+ @mobileDestination = mobileDestination
193
+ @expirationDate = expirationDate
194
194
  @version = version
195
195
  @trusted = trusted
196
- @pending_action = pending_action
197
- @description_user = description_user
196
+ @pendingAction = pendingAction
197
+ @descriptionUser = descriptionUser
198
198
  end
199
199
  end
200
200
 
@@ -204,12 +204,12 @@ class TelephonyPendingActionStruct
204
204
  @@schema_ns = "http://soapi.ovh.com/manager"
205
205
  @@schema_element = [["dateTodo", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTodo")]], ["offer", ["SOAP::SOAPString", XSD::QName.new(nil, "offer")]], ["action", ["SOAP::SOAPString", XSD::QName.new(nil, "action")]]]
206
206
 
207
- attr_accessor :date_todo
207
+ attr_accessor :dateTodo
208
208
  attr_accessor :offer
209
209
  attr_accessor :action
210
210
 
211
- def initialize(date_todo = nil, offer = nil, action = nil)
212
- @date_todo = date_todo
211
+ def initialize(dateTodo = nil, offer = nil, action = nil)
212
+ @dateTodo = dateTodo
213
213
  @offer = offer
214
214
  @action = action
215
215
  end
@@ -224,14 +224,14 @@ class TelephonyBillingAccountInfoChildrenStruct
224
224
  attr_accessor :number
225
225
  attr_accessor :offer
226
226
  attr_accessor :type
227
- attr_accessor :expiration_date
227
+ attr_accessor :expirationDate
228
228
  attr_accessor :description
229
229
 
230
- def initialize(number = nil, offer = nil, type = nil, expiration_date = nil, description = nil)
230
+ def initialize(number = nil, offer = nil, type = nil, expirationDate = nil, description = nil)
231
231
  @number = number
232
232
  @offer = offer
233
233
  @type = type
234
- @expiration_date = expiration_date
234
+ @expirationDate = expirationDate
235
235
  @description = description
236
236
  end
237
237
  end
@@ -243,16 +243,16 @@ class TelephonyBillingAccountInfoReturn
243
243
  @@schema_element = [["offer", ["SOAP::SOAPString", XSD::QName.new(nil, "offer")]], ["consumtionTime", ["SOAP::SOAPString", XSD::QName.new(nil, "consumtionTime")]], ["outPlan", ["SOAP::SOAPString", XSD::QName.new(nil, "outPlan")]], ["facturationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "facturationDate")]], ["children", ["MyArrayOfTelephonyBillingAccountInfoChildrenStructType", XSD::QName.new(nil, "children")]]]
244
244
 
245
245
  attr_accessor :offer
246
- attr_accessor :consumtion_time
247
- attr_accessor :out_plan
248
- attr_accessor :facturation_date
246
+ attr_accessor :consumtionTime
247
+ attr_accessor :outPlan
248
+ attr_accessor :facturationDate
249
249
  attr_accessor :children
250
250
 
251
- def initialize(offer = nil, consumtion_time = nil, out_plan = nil, facturation_date = nil, children = nil)
251
+ def initialize(offer = nil, consumtionTime = nil, outPlan = nil, facturationDate = nil, children = nil)
252
252
  @offer = offer
253
- @consumtion_time = consumtion_time
254
- @out_plan = out_plan
255
- @facturation_date = facturation_date
253
+ @consumtionTime = consumtionTime
254
+ @outPlan = outPlan
255
+ @facturationDate = facturationDate
256
256
  @children = children
257
257
  end
258
258
  end
@@ -263,12 +263,12 @@ class TelephonyLineAliasPoolStruct
263
263
  @@schema_ns = "http://soapi.ovh.com/manager"
264
264
  @@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")]]]
265
265
 
266
- attr_accessor :pool_number
266
+ attr_accessor :poolNumber
267
267
  attr_accessor :service
268
268
  attr_accessor :display
269
269
 
270
- def initialize(pool_number = nil, service = nil, display = nil)
271
- @pool_number = pool_number
270
+ def initialize(poolNumber = nil, service = nil, display = nil)
271
+ @poolNumber = poolNumber
272
272
  @service = service
273
273
  @display = display
274
274
  end
@@ -281,29 +281,29 @@ class TelephonyLineStruct
281
281
  @@schema_element = [["number", ["SOAP::SOAPString", XSD::QName.new(nil, "number")]], ["billingAccount", ["SOAP::SOAPString", XSD::QName.new(nil, "billingAccount")]], ["offer", ["SOAP::SOAPString", XSD::QName.new(nil, "offer")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]], ["service", ["SOAP::SOAPString", XSD::QName.new(nil, "service")]], ["expirationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "expirationDate")]], ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]], ["betaGamaOffer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "betaGamaOffer")]], ["setOn", ["SOAP::SOAPString", XSD::QName.new(nil, "setOn")]], ["aliasPool", ["TelephonyLineAliasPoolStruct", XSD::QName.new(nil, "aliasPool")]], ["pendingAction", ["TelephonyPendingActionStruct", XSD::QName.new(nil, "pendingAction")]]]
282
282
 
283
283
  attr_accessor :number
284
- attr_accessor :billing_account
284
+ attr_accessor :billingAccount
285
285
  attr_accessor :offer
286
286
  attr_accessor :type
287
287
  attr_accessor :service
288
- attr_accessor :expiration_date
288
+ attr_accessor :expirationDate
289
289
  attr_accessor :description
290
- attr_accessor :beta_gama_offer
291
- attr_accessor :set_on
292
- attr_accessor :alias_pool
293
- attr_accessor :pending_action
290
+ attr_accessor :betaGamaOffer
291
+ attr_accessor :setOn
292
+ attr_accessor :aliasPool
293
+ attr_accessor :pendingAction
294
294
 
295
- def initialize(number = nil, billing_account = nil, offer = nil, type = nil, service = nil, expiration_date = nil, description = nil, beta_gama_offer = nil, set_on = nil, alias_pool = nil, pending_action = nil)
295
+ def initialize(number = nil, billingAccount = nil, offer = nil, type = nil, service = nil, expirationDate = nil, description = nil, betaGamaOffer = nil, setOn = nil, aliasPool = nil, pendingAction = nil)
296
296
  @number = number
297
- @billing_account = billing_account
297
+ @billingAccount = billingAccount
298
298
  @offer = offer
299
299
  @type = type
300
300
  @service = service
301
- @expiration_date = expiration_date
301
+ @expirationDate = expirationDate
302
302
  @description = description
303
- @beta_gama_offer = beta_gama_offer
304
- @set_on = set_on
305
- @alias_pool = alias_pool
306
- @pending_action = pending_action
303
+ @betaGamaOffer = betaGamaOffer
304
+ @setOn = setOn
305
+ @aliasPool = aliasPool
306
+ @pendingAction = pendingAction
307
307
  end
308
308
  end
309
309
 
@@ -320,7 +320,7 @@ class TelephonyLineListReturn
320
320
  end
321
321
 
322
322
  def alias=(value)
323
- @v_alias = v_alias
323
+ @v_alias = value
324
324
  end
325
325
 
326
326
  def initialize(link = nil, v_alias = nil)
@@ -335,42 +335,42 @@ class TelephonyLineOptionsListReturn
335
335
  @@schema_ns = "http://soapi.ovh.com/manager"
336
336
  @@schema_element = [["identificationRestriction", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "identificationRestriction")]], ["anonymousCallRejection", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "anonymousCallRejection")]], ["doNotDisturb", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "doNotDisturb")]], ["absentSuscriber", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "absentSuscriber")]], ["lockOutCall", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "lockOutCall")]], ["lockOutCallPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "lockOutCallPassword")]], ["forwardUnconditional", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardUnconditional")]], ["forwardUnconditionalNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardUnconditionalNumber")]], ["forwardNoReply", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardNoReply")]], ["forwardNoReplyDelay", ["SOAP::SOAPInt", XSD::QName.new(nil, "forwardNoReplyDelay")]], ["forwardNoReplyNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardNoReplyNumber")]], ["forwardBusy", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardBusy")]], ["forwardBusyNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardBusyNumber")]], ["forwardBackup", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardBackup")]], ["forwardBackupNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardBackupNumber")]], ["callWaiting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "callWaiting")]], ["displayCallNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "displayCallNumber")]]]
337
337
 
338
- attr_accessor :identification_restriction
339
- attr_accessor :anonymous_call_rejection
340
- attr_accessor :do_not_disturb
341
- attr_accessor :absent_suscriber
342
- attr_accessor :lock_out_call
343
- attr_accessor :lock_out_call_password
344
- attr_accessor :forward_unconditional
345
- attr_accessor :forward_unconditional_number
346
- attr_accessor :forward_no_reply
347
- attr_accessor :forward_no_reply_delay
348
- attr_accessor :forward_no_reply_number
349
- attr_accessor :forward_busy
350
- attr_accessor :forward_busy_number
351
- attr_accessor :forward_backup
352
- attr_accessor :forward_backup_number
353
- attr_accessor :call_waiting
354
- attr_accessor :display_call_number
355
-
356
- def initialize(identification_restriction = nil, anonymous_call_rejection = nil, do_not_disturb = nil, absent_suscriber = nil, lock_out_call = nil, lock_out_call_password = nil, forward_unconditional = nil, forward_unconditional_number = nil, forward_no_reply = nil, forward_no_reply_delay = nil, forward_no_reply_number = nil, forward_busy = nil, forward_busy_number = nil, forward_backup = nil, forward_backup_number = nil, call_waiting = nil, display_call_number = nil)
357
- @identification_restriction = identification_restriction
358
- @anonymous_call_rejection = anonymous_call_rejection
359
- @do_not_disturb = do_not_disturb
360
- @absent_suscriber = absent_suscriber
361
- @lock_out_call = lock_out_call
362
- @lock_out_call_password = lock_out_call_password
363
- @forward_unconditional = forward_unconditional
364
- @forward_unconditional_number = forward_unconditional_number
365
- @forward_no_reply = forward_no_reply
366
- @forward_no_reply_delay = forward_no_reply_delay
367
- @forward_no_reply_number = forward_no_reply_number
368
- @forward_busy = forward_busy
369
- @forward_busy_number = forward_busy_number
370
- @forward_backup = forward_backup
371
- @forward_backup_number = forward_backup_number
372
- @call_waiting = call_waiting
373
- @display_call_number = display_call_number
338
+ attr_accessor :identificationRestriction
339
+ attr_accessor :anonymousCallRejection
340
+ attr_accessor :doNotDisturb
341
+ attr_accessor :absentSuscriber
342
+ attr_accessor :lockOutCall
343
+ attr_accessor :lockOutCallPassword
344
+ attr_accessor :forwardUnconditional
345
+ attr_accessor :forwardUnconditionalNumber
346
+ attr_accessor :forwardNoReply
347
+ attr_accessor :forwardNoReplyDelay
348
+ attr_accessor :forwardNoReplyNumber
349
+ attr_accessor :forwardBusy
350
+ attr_accessor :forwardBusyNumber
351
+ attr_accessor :forwardBackup
352
+ attr_accessor :forwardBackupNumber
353
+ attr_accessor :callWaiting
354
+ attr_accessor :displayCallNumber
355
+
356
+ def initialize(identificationRestriction = nil, anonymousCallRejection = nil, doNotDisturb = nil, absentSuscriber = nil, lockOutCall = nil, lockOutCallPassword = nil, forwardUnconditional = nil, forwardUnconditionalNumber = nil, forwardNoReply = nil, forwardNoReplyDelay = nil, forwardNoReplyNumber = nil, forwardBusy = nil, forwardBusyNumber = nil, forwardBackup = nil, forwardBackupNumber = nil, callWaiting = nil, displayCallNumber = nil)
357
+ @identificationRestriction = identificationRestriction
358
+ @anonymousCallRejection = anonymousCallRejection
359
+ @doNotDisturb = doNotDisturb
360
+ @absentSuscriber = absentSuscriber
361
+ @lockOutCall = lockOutCall
362
+ @lockOutCallPassword = lockOutCallPassword
363
+ @forwardUnconditional = forwardUnconditional
364
+ @forwardUnconditionalNumber = forwardUnconditionalNumber
365
+ @forwardNoReply = forwardNoReply
366
+ @forwardNoReplyDelay = forwardNoReplyDelay
367
+ @forwardNoReplyNumber = forwardNoReplyNumber
368
+ @forwardBusy = forwardBusy
369
+ @forwardBusyNumber = forwardBusyNumber
370
+ @forwardBackup = forwardBackup
371
+ @forwardBackupNumber = forwardBackupNumber
372
+ @callWaiting = callWaiting
373
+ @displayCallNumber = displayCallNumber
374
374
  end
375
375
  end
376
376
 
@@ -413,21 +413,21 @@ class TelephonyOfferInfoReturn
413
413
  attr_accessor :number
414
414
  attr_accessor :description
415
415
  attr_accessor :offer
416
- attr_accessor :country_code
417
- attr_accessor :next_billing_date
418
- attr_accessor :simultaneous_lines
416
+ attr_accessor :countryCode
417
+ attr_accessor :nextBillingDate
418
+ attr_accessor :simultaneousLines
419
419
  attr_accessor :hardware
420
- attr_accessor :sip_account
420
+ attr_accessor :sipAccount
421
421
 
422
- def initialize(number = nil, description = nil, offer = nil, country_code = nil, next_billing_date = nil, simultaneous_lines = nil, hardware = nil, sip_account = nil)
422
+ def initialize(number = nil, description = nil, offer = nil, countryCode = nil, nextBillingDate = nil, simultaneousLines = nil, hardware = nil, sipAccount = nil)
423
423
  @number = number
424
424
  @description = description
425
425
  @offer = offer
426
- @country_code = country_code
427
- @next_billing_date = next_billing_date
428
- @simultaneous_lines = simultaneous_lines
426
+ @countryCode = countryCode
427
+ @nextBillingDate = nextBillingDate
428
+ @simultaneousLines = simultaneousLines
429
429
  @hardware = hardware
430
- @sip_account = sip_account
430
+ @sipAccount = sipAccount
431
431
  end
432
432
  end
433
433
 
@@ -440,17 +440,17 @@ class TelephonyOfferInfoSipAccountStruct
440
440
  attr_accessor :username
441
441
  attr_accessor :extension
442
442
  attr_accessor :domain
443
- attr_accessor :last_login
444
- attr_accessor :local_adress
445
- attr_accessor :public_adress
443
+ attr_accessor :lastLogin
444
+ attr_accessor :localAdress
445
+ attr_accessor :publicAdress
446
446
 
447
- def initialize(username = nil, extension = nil, domain = nil, last_login = nil, local_adress = nil, public_adress = nil)
447
+ def initialize(username = nil, extension = nil, domain = nil, lastLogin = nil, localAdress = nil, publicAdress = nil)
448
448
  @username = username
449
449
  @extension = extension
450
450
  @domain = domain
451
- @last_login = last_login
452
- @local_adress = local_adress
453
- @public_adress = public_adress
451
+ @lastLogin = lastLogin
452
+ @localAdress = localAdress
453
+ @publicAdress = publicAdress
454
454
  end
455
455
  end
456
456
 
@@ -468,9 +468,9 @@ class TelephonyOfferInfoHardwareStruct
468
468
  attr_accessor :engage
469
469
  attr_accessor :status
470
470
  attr_accessor :port
471
- attr_accessor :out_of_service
471
+ attr_accessor :outOfService
472
472
 
473
- def initialize(brand = nil, model = nil, protocol = nil, mac = nil, ip = nil, engage = nil, status = nil, port = nil, out_of_service = nil)
473
+ def initialize(brand = nil, model = nil, protocol = nil, mac = nil, ip = nil, engage = nil, status = nil, port = nil, outOfService = nil)
474
474
  @brand = brand
475
475
  @model = model
476
476
  @protocol = protocol
@@ -479,7 +479,7 @@ class TelephonyOfferInfoHardwareStruct
479
479
  @engage = engage
480
480
  @status = status
481
481
  @port = port
482
- @out_of_service = out_of_service
482
+ @outOfService = outOfService
483
483
  end
484
484
  end
485
485
 
@@ -493,22 +493,22 @@ class TelephonyCallStruct
493
493
  attr_accessor :date
494
494
  attr_accessor :duration
495
495
  attr_accessor :destination
496
- attr_accessor :price_without_vat
496
+ attr_accessor :priceWithoutVAT
497
497
  attr_accessor :nature
498
- attr_accessor :over_limit
498
+ attr_accessor :overLimit
499
499
  attr_accessor :type
500
- attr_accessor :calling_number
500
+ attr_accessor :callingNumber
501
501
 
502
- def initialize(number = nil, date = nil, duration = nil, destination = nil, price_without_vat = nil, nature = nil, over_limit = nil, type = nil, calling_number = nil)
502
+ def initialize(number = nil, date = nil, duration = nil, destination = nil, priceWithoutVAT = nil, nature = nil, overLimit = nil, type = nil, callingNumber = nil)
503
503
  @number = number
504
504
  @date = date
505
505
  @duration = duration
506
506
  @destination = destination
507
- @price_without_vat = price_without_vat
507
+ @priceWithoutVAT = priceWithoutVAT
508
508
  @nature = nature
509
- @over_limit = over_limit
509
+ @overLimit = overLimit
510
510
  @type = type
511
- @calling_number = calling_number
511
+ @callingNumber = callingNumber
512
512
  end
513
513
  end
514
514
 
@@ -520,12 +520,12 @@ class TelephonyCallsSummaryDetailsStruct
520
520
 
521
521
  attr_accessor :count
522
522
  attr_accessor :duration
523
- attr_accessor :price_without_vat
523
+ attr_accessor :priceWithoutVAT
524
524
 
525
- def initialize(count = nil, duration = nil, price_without_vat = nil)
525
+ def initialize(count = nil, duration = nil, priceWithoutVAT = nil)
526
526
  @count = count
527
527
  @duration = duration
528
- @price_without_vat = price_without_vat
528
+ @priceWithoutVAT = priceWithoutVAT
529
529
  end
530
530
  end
531
531
 
@@ -537,12 +537,12 @@ class TelephonyFaxSummaryDetailsStruct
537
537
 
538
538
  attr_accessor :count
539
539
  attr_accessor :pages
540
- attr_accessor :price_without_vat
540
+ attr_accessor :priceWithoutVAT
541
541
 
542
- def initialize(count = nil, pages = nil, price_without_vat = nil)
542
+ def initialize(count = nil, pages = nil, priceWithoutVAT = nil)
543
543
  @count = count
544
544
  @pages = pages
545
- @price_without_vat = price_without_vat
545
+ @priceWithoutVAT = priceWithoutVAT
546
546
  end
547
547
  end
548
548
 
@@ -552,12 +552,12 @@ class TelephonyCallsSummaryStruct
552
552
  @@schema_ns = "http://soapi.ovh.com/manager"
553
553
  @@schema_element = [["pricePlan", ["TelephonyCallsSummaryDetailsStruct", XSD::QName.new(nil, "pricePlan")]], ["outPlan", ["TelephonyCallsSummaryDetailsStruct", XSD::QName.new(nil, "outPlan")]]]
554
554
 
555
- attr_accessor :price_plan
556
- attr_accessor :out_plan
555
+ attr_accessor :pricePlan
556
+ attr_accessor :outPlan
557
557
 
558
- def initialize(price_plan = nil, out_plan = nil)
559
- @price_plan = price_plan
560
- @out_plan = out_plan
558
+ def initialize(pricePlan = nil, outPlan = nil)
559
+ @pricePlan = pricePlan
560
+ @outPlan = outPlan
561
561
  end
562
562
  end
563
563
 
@@ -583,15 +583,15 @@ class TelephonyBillingAccountSummaryLineStruct
583
583
  @@schema_element = [["line", ["SOAP::SOAPString", XSD::QName.new(nil, "line")]], ["phoneNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "phoneNumber")]], ["fixe", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "fixe")]], ["special", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "special")]], ["mobile", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "mobile")]], ["fax", ["TelephonyFaxSummaryStruct", XSD::QName.new(nil, "fax")]]]
584
584
 
585
585
  attr_accessor :line
586
- attr_accessor :phone_number
586
+ attr_accessor :phoneNumber
587
587
  attr_accessor :fixe
588
588
  attr_accessor :special
589
589
  attr_accessor :mobile
590
590
  attr_accessor :fax
591
591
 
592
- def initialize(line = nil, phone_number = nil, fixe = nil, special = nil, mobile = nil, fax = nil)
592
+ def initialize(line = nil, phoneNumber = nil, fixe = nil, special = nil, mobile = nil, fax = nil)
593
593
  @line = line
594
- @phone_number = phone_number
594
+ @phoneNumber = phoneNumber
595
595
  @fixe = fixe
596
596
  @special = special
597
597
  @mobile = mobile
@@ -606,12 +606,12 @@ class TelephonyBillingAccountSummaryBillingAccountStruct
606
606
  @@schema_element = [["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["betaGammaOffer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "betaGammaOffer")]], ["mobile", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "mobile")]]]
607
607
 
608
608
  attr_accessor :name
609
- attr_accessor :beta_gamma_offer
609
+ attr_accessor :betaGammaOffer
610
610
  attr_accessor :mobile
611
611
 
612
- def initialize(name = nil, beta_gamma_offer = nil, mobile = nil)
612
+ def initialize(name = nil, betaGammaOffer = nil, mobile = nil)
613
613
  @name = name
614
- @beta_gamma_offer = beta_gamma_offer
614
+ @betaGammaOffer = betaGammaOffer
615
615
  @mobile = mobile
616
616
  end
617
617
  end
@@ -622,11 +622,11 @@ class TelephonyBillingAccountSummaryReturn
622
622
  @@schema_ns = "http://soapi.ovh.com/manager"
623
623
  @@schema_element = [["billingAccount", ["TelephonyBillingAccountSummaryBillingAccountStruct", XSD::QName.new(nil, "billingAccount")]], ["lines", ["MyArrayOfTelephonyBillingAccountSummaryLineStructType", XSD::QName.new(nil, "lines")]]]
624
624
 
625
- attr_accessor :billing_account
625
+ attr_accessor :billingAccount
626
626
  attr_accessor :lines
627
627
 
628
- def initialize(billing_account = nil, lines = nil)
629
- @billing_account = billing_account
628
+ def initialize(billingAccount = nil, lines = nil)
629
+ @billingAccount = billingAccount
630
630
  @lines = lines
631
631
  end
632
632
  end
@@ -637,13 +637,13 @@ class TelephonyCallListReturn
637
637
  @@schema_ns = "http://soapi.ovh.com/manager"
638
638
  @@schema_element = [["fromDate", ["SOAP::SOAPString", XSD::QName.new(nil, "fromDate")]], ["toDate", ["SOAP::SOAPString", XSD::QName.new(nil, "toDate")]], ["list", ["MyArrayOfTelephonyCallStructType", XSD::QName.new(nil, "list")]]]
639
639
 
640
- attr_accessor :from_date
641
- attr_accessor :to_date
640
+ attr_accessor :fromDate
641
+ attr_accessor :toDate
642
642
  attr_accessor :list
643
643
 
644
- def initialize(from_date = nil, to_date = nil, list = nil)
645
- @from_date = from_date
646
- @to_date = to_date
644
+ def initialize(fromDate = nil, toDate = nil, list = nil)
645
+ @fromDate = fromDate
646
+ @toDate = toDate
647
647
  @list = list
648
648
  end
649
649
  end
@@ -656,16 +656,16 @@ class TelephonyBillStruct
656
656
 
657
657
  attr_accessor :date
658
658
  attr_accessor :price
659
- attr_accessor :order_id
660
- attr_accessor :order_paid
661
- attr_accessor :order_url
659
+ attr_accessor :orderId
660
+ attr_accessor :orderPaid
661
+ attr_accessor :orderUrl
662
662
 
663
- def initialize(date = nil, price = nil, order_id = nil, order_paid = nil, order_url = nil)
663
+ def initialize(date = nil, price = nil, orderId = nil, orderPaid = nil, orderUrl = nil)
664
664
  @date = date
665
665
  @price = price
666
- @order_id = order_id
667
- @order_paid = order_paid
668
- @order_url = order_url
666
+ @orderId = orderId
667
+ @orderPaid = orderPaid
668
+ @orderUrl = orderUrl
669
669
  end
670
670
  end
671
671
 
@@ -675,13 +675,13 @@ class TelephonyBillDetailsReturn
675
675
  @@schema_ns = "http://soapi.ovh.com/manager"
676
676
  @@schema_element = [["fromDate", ["SOAP::SOAPString", XSD::QName.new(nil, "fromDate")]], ["toDate", ["SOAP::SOAPString", XSD::QName.new(nil, "toDate")]], ["list", ["MyArrayOfTelephonyCallStructType", XSD::QName.new(nil, "list")]]]
677
677
 
678
- attr_accessor :from_date
679
- attr_accessor :to_date
678
+ attr_accessor :fromDate
679
+ attr_accessor :toDate
680
680
  attr_accessor :list
681
681
 
682
- def initialize(from_date = nil, to_date = nil, list = nil)
683
- @from_date = from_date
684
- @to_date = to_date
682
+ def initialize(fromDate = nil, toDate = nil, list = nil)
683
+ @fromDate = fromDate
684
+ @toDate = toDate
685
685
  @list = list
686
686
  end
687
687
  end
@@ -693,39 +693,39 @@ class TelephonyVoicemailOptionsListReturn
693
693
  @@schema_element = [["redirection1", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection1")]], ["redirection1Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection1Email")]], ["redirection2", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection2")]], ["redirection2Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection2Email")]], ["redirection3", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection3")]], ["redirection3Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection3Email")]], ["redirection4", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection4")]], ["redirection4Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection4Email")]], ["redirection5", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection5")]], ["redirection5Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection5Email")]], ["annouceMessage", ["SOAP::SOAPString", XSD::QName.new(nil, "annouceMessage")]], ["keepMessage", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "keepMessage")]], ["audioformat", ["SOAP::SOAPString", XSD::QName.new(nil, "audioformat")]], ["fromEmail", ["SOAP::SOAPString", XSD::QName.new(nil, "fromEmail")]], ["fromName", ["SOAP::SOAPString", XSD::QName.new(nil, "fromName")]], ["forcePassword", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forcePassword")]]]
694
694
 
695
695
  attr_accessor :redirection1
696
- attr_accessor :redirection1_email
696
+ attr_accessor :redirection1Email
697
697
  attr_accessor :redirection2
698
- attr_accessor :redirection2_email
698
+ attr_accessor :redirection2Email
699
699
  attr_accessor :redirection3
700
- attr_accessor :redirection3_email
700
+ attr_accessor :redirection3Email
701
701
  attr_accessor :redirection4
702
- attr_accessor :redirection4_email
702
+ attr_accessor :redirection4Email
703
703
  attr_accessor :redirection5
704
- attr_accessor :redirection5_email
705
- attr_accessor :annouce_message
706
- attr_accessor :keep_message
704
+ attr_accessor :redirection5Email
705
+ attr_accessor :annouceMessage
706
+ attr_accessor :keepMessage
707
707
  attr_accessor :audioformat
708
- attr_accessor :from_email
709
- attr_accessor :from_name
710
- attr_accessor :force_password
708
+ attr_accessor :fromEmail
709
+ attr_accessor :fromName
710
+ attr_accessor :forcePassword
711
711
 
712
- def initialize(redirection1 = nil, redirection1_email = nil, redirection2 = nil, redirection2_email = nil, redirection3 = nil, redirection3_email = nil, redirection4 = nil, redirection4_email = nil, redirection5 = nil, redirection5_email = nil, annouce_message = nil, keep_message = nil, audioformat = nil, from_email = nil, from_name = nil, force_password = nil)
712
+ def initialize(redirection1 = nil, redirection1Email = nil, redirection2 = nil, redirection2Email = nil, redirection3 = nil, redirection3Email = nil, redirection4 = nil, redirection4Email = nil, redirection5 = nil, redirection5Email = nil, annouceMessage = nil, keepMessage = nil, audioformat = nil, fromEmail = nil, fromName = nil, forcePassword = nil)
713
713
  @redirection1 = redirection1
714
- @redirection1_email = redirection1_email
714
+ @redirection1Email = redirection1Email
715
715
  @redirection2 = redirection2
716
- @redirection2_email = redirection2_email
716
+ @redirection2Email = redirection2Email
717
717
  @redirection3 = redirection3
718
- @redirection3_email = redirection3_email
718
+ @redirection3Email = redirection3Email
719
719
  @redirection4 = redirection4
720
- @redirection4_email = redirection4_email
720
+ @redirection4Email = redirection4Email
721
721
  @redirection5 = redirection5
722
- @redirection5_email = redirection5_email
723
- @annouce_message = annouce_message
724
- @keep_message = keep_message
722
+ @redirection5Email = redirection5Email
723
+ @annouceMessage = annouceMessage
724
+ @keepMessage = keepMessage
725
725
  @audioformat = audioformat
726
- @from_email = from_email
727
- @from_name = from_name
728
- @force_password = force_password
726
+ @fromEmail = fromEmail
727
+ @fromName = fromName
728
+ @forcePassword = forcePassword
729
729
  end
730
730
  end
731
731
 
@@ -789,20 +789,20 @@ class TelephonyPhonebookContactStruct
789
789
  attr_accessor :id
790
790
  attr_accessor :name
791
791
  attr_accessor :surname
792
- attr_accessor :work_phone
793
- attr_accessor :work_mobile
794
- attr_accessor :home_phone
795
- attr_accessor :home_mobile
792
+ attr_accessor :workPhone
793
+ attr_accessor :workMobile
794
+ attr_accessor :homePhone
795
+ attr_accessor :homeMobile
796
796
  attr_accessor :group
797
797
 
798
- def initialize(id = nil, name = nil, surname = nil, work_phone = nil, work_mobile = nil, home_phone = nil, home_mobile = nil, group = nil)
798
+ def initialize(id = nil, name = nil, surname = nil, workPhone = nil, workMobile = nil, homePhone = nil, homeMobile = nil, group = nil)
799
799
  @id = id
800
800
  @name = name
801
801
  @surname = surname
802
- @work_phone = work_phone
803
- @work_mobile = work_mobile
804
- @home_phone = home_phone
805
- @home_mobile = home_mobile
802
+ @workPhone = workPhone
803
+ @workMobile = workMobile
804
+ @homePhone = homePhone
805
+ @homeMobile = homeMobile
806
806
  @group = group
807
807
  end
808
808
  end
@@ -832,30 +832,30 @@ class TelephonySecurityDepositCreditReturn
832
832
  @@schema_ns = "http://soapi.ovh.com/manager"
833
833
  @@schema_element = [["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]], ["totalPrice", ["SOAP::SOAPFloat", XSD::QName.new(nil, "totalPrice")]], ["vat", ["SOAP::SOAPFloat", XSD::QName.new(nil, "vat")]], ["totalPriceWithVat", ["SOAP::SOAPFloat", XSD::QName.new(nil, "totalPriceWithVat")]], ["ribBankCode", ["SOAP::SOAPString", XSD::QName.new(nil, "ribBankCode")]], ["ribAgencyCode", ["SOAP::SOAPString", XSD::QName.new(nil, "ribAgencyCode")]], ["ribAccountNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "ribAccountNumber")]], ["ribKey", ["SOAP::SOAPString", XSD::QName.new(nil, "ribKey")]], ["iban", ["SOAP::SOAPString", XSD::QName.new(nil, "iban")]], ["bic", ["SOAP::SOAPString", XSD::QName.new(nil, "bic")]]]
834
834
 
835
- attr_accessor :order_id
836
- attr_accessor :order_password
837
- attr_accessor :order_url
838
- attr_accessor :total_price
835
+ attr_accessor :orderId
836
+ attr_accessor :orderPassword
837
+ attr_accessor :orderUrl
838
+ attr_accessor :totalPrice
839
839
  attr_accessor :vat
840
- attr_accessor :total_price_with_vat
841
- attr_accessor :rib_bank_code
842
- attr_accessor :rib_agency_code
843
- attr_accessor :rib_account_number
844
- attr_accessor :rib_key
840
+ attr_accessor :totalPriceWithVat
841
+ attr_accessor :ribBankCode
842
+ attr_accessor :ribAgencyCode
843
+ attr_accessor :ribAccountNumber
844
+ attr_accessor :ribKey
845
845
  attr_accessor :iban
846
846
  attr_accessor :bic
847
847
 
848
- def initialize(order_id = nil, order_password = nil, order_url = nil, total_price = nil, vat = nil, total_price_with_vat = nil, rib_bank_code = nil, rib_agency_code = nil, rib_account_number = nil, rib_key = nil, iban = nil, bic = nil)
849
- @order_id = order_id
850
- @order_password = order_password
851
- @order_url = order_url
852
- @total_price = total_price
848
+ def initialize(orderId = nil, orderPassword = nil, orderUrl = nil, totalPrice = nil, vat = nil, totalPriceWithVat = nil, ribBankCode = nil, ribAgencyCode = nil, ribAccountNumber = nil, ribKey = nil, iban = nil, bic = nil)
849
+ @orderId = orderId
850
+ @orderPassword = orderPassword
851
+ @orderUrl = orderUrl
852
+ @totalPrice = totalPrice
853
853
  @vat = vat
854
- @total_price_with_vat = total_price_with_vat
855
- @rib_bank_code = rib_bank_code
856
- @rib_agency_code = rib_agency_code
857
- @rib_account_number = rib_account_number
858
- @rib_key = rib_key
854
+ @totalPriceWithVat = totalPriceWithVat
855
+ @ribBankCode = ribBankCode
856
+ @ribAgencyCode = ribAgencyCode
857
+ @ribAccountNumber = ribAccountNumber
858
+ @ribKey = ribKey
859
859
  @iban = iban
860
860
  @bic = bic
861
861
  end
@@ -868,41 +868,41 @@ class TelephonyConferenceStruct
868
868
  @@schema_element = [["room", ["SOAP::SOAPString", XSD::QName.new(nil, "room")]], ["countryCode", ["SOAP::SOAPString", XSD::QName.new(nil, "countryCode")]], ["callNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "callNumber")]], ["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["customAnnounce", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "customAnnounce")]], ["recordAnnounce", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "recordAnnounce")]], ["mailReport", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "mailReport")]], ["customMailReportAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "customMailReportAddress")]], ["askName", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "askName")]], ["tellMemberCount", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "tellMemberCount")]], ["moderatorCountryCode", ["SOAP::SOAPString", XSD::QName.new(nil, "moderatorCountryCode")]], ["moderatorCallNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "moderatorCallNumber")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["dtmfmenu", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "dtmfmenu")]], ["announce_rcv", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "announce_rcv")]], ["announce_snd", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "announce_snd")]], ["recordConf", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "recordConf")]]]
869
869
 
870
870
  attr_accessor :room
871
- attr_accessor :country_code
872
- attr_accessor :call_number
871
+ attr_accessor :countryCode
872
+ attr_accessor :callNumber
873
873
  attr_accessor :language
874
- attr_accessor :custom_announce
875
- attr_accessor :record_announce
876
- attr_accessor :mail_report
877
- attr_accessor :custom_mail_report_address
878
- attr_accessor :ask_name
879
- attr_accessor :tell_member_count
880
- attr_accessor :moderator_country_code
881
- attr_accessor :moderator_call_number
874
+ attr_accessor :customAnnounce
875
+ attr_accessor :recordAnnounce
876
+ attr_accessor :mailReport
877
+ attr_accessor :customMailReportAddress
878
+ attr_accessor :askName
879
+ attr_accessor :tellMemberCount
880
+ attr_accessor :moderatorCountryCode
881
+ attr_accessor :moderatorCallNumber
882
882
  attr_accessor :status
883
883
  attr_accessor :dtmfmenu
884
884
  attr_accessor :announce_rcv
885
885
  attr_accessor :announce_snd
886
- attr_accessor :record_conf
886
+ attr_accessor :recordConf
887
887
 
888
- def initialize(room = nil, country_code = nil, call_number = nil, language = nil, custom_announce = nil, record_announce = nil, mail_report = nil, custom_mail_report_address = nil, ask_name = nil, tell_member_count = nil, moderator_country_code = nil, moderator_call_number = nil, status = nil, dtmfmenu = nil, announce_rcv = nil, announce_snd = nil, record_conf = nil)
888
+ def initialize(room = nil, countryCode = nil, callNumber = nil, language = nil, customAnnounce = nil, recordAnnounce = nil, mailReport = nil, customMailReportAddress = nil, askName = nil, tellMemberCount = nil, moderatorCountryCode = nil, moderatorCallNumber = nil, status = nil, dtmfmenu = nil, announce_rcv = nil, announce_snd = nil, recordConf = nil)
889
889
  @room = room
890
- @country_code = country_code
891
- @call_number = call_number
890
+ @countryCode = countryCode
891
+ @callNumber = callNumber
892
892
  @language = language
893
- @custom_announce = custom_announce
894
- @record_announce = record_announce
895
- @mail_report = mail_report
896
- @custom_mail_report_address = custom_mail_report_address
897
- @ask_name = ask_name
898
- @tell_member_count = tell_member_count
899
- @moderator_country_code = moderator_country_code
900
- @moderator_call_number = moderator_call_number
893
+ @customAnnounce = customAnnounce
894
+ @recordAnnounce = recordAnnounce
895
+ @mailReport = mailReport
896
+ @customMailReportAddress = customMailReportAddress
897
+ @askName = askName
898
+ @tellMemberCount = tellMemberCount
899
+ @moderatorCountryCode = moderatorCountryCode
900
+ @moderatorCallNumber = moderatorCallNumber
901
901
  @status = status
902
902
  @dtmfmenu = dtmfmenu
903
903
  @announce_rcv = announce_rcv
904
904
  @announce_snd = announce_snd
905
- @record_conf = record_conf
905
+ @recordConf = recordConf
906
906
  end
907
907
  end
908
908
 
@@ -953,19 +953,19 @@ class TelephonySmsHistoryStruct
953
953
  @@schema_ns = "http://soapi.ovh.com/manager"
954
954
  @@schema_element = [["smsId", ["SOAP::SOAPInt", XSD::QName.new(nil, "smsId")]], ["numberFrom", ["SOAP::SOAPString", XSD::QName.new(nil, "numberFrom")]], ["numberTo", ["SOAP::SOAPString", XSD::QName.new(nil, "numberTo")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["message", ["SOAP::SOAPString", XSD::QName.new(nil, "message")]], ["text", ["SOAP::SOAPString", XSD::QName.new(nil, "text")]], ["user", ["SOAP::SOAPString", XSD::QName.new(nil, "user")]]]
955
955
 
956
- attr_accessor :sms_id
957
- attr_accessor :number_from
958
- attr_accessor :number_to
956
+ attr_accessor :smsId
957
+ attr_accessor :numberFrom
958
+ attr_accessor :numberTo
959
959
  attr_accessor :status
960
960
  attr_accessor :date
961
961
  attr_accessor :message
962
962
  attr_accessor :text
963
963
  attr_accessor :user
964
964
 
965
- def initialize(sms_id = nil, number_from = nil, number_to = nil, status = nil, date = nil, message = nil, text = nil, user = nil)
966
- @sms_id = sms_id
967
- @number_from = number_from
968
- @number_to = number_to
965
+ def initialize(smsId = nil, numberFrom = nil, numberTo = nil, status = nil, date = nil, message = nil, text = nil, user = nil)
966
+ @smsId = smsId
967
+ @numberFrom = numberFrom
968
+ @numberTo = numberTo
969
969
  @status = status
970
970
  @date = date
971
971
  @message = message
@@ -997,14 +997,14 @@ class TelephonyAbbreviatedNumberStruct
997
997
  @@schema_ns = "http://soapi.ovh.com/manager"
998
998
  @@schema_element = [["abbreviatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "abbreviatedNumber")]], ["relatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "relatedNumber")]], ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["surname", ["SOAP::SOAPString", XSD::QName.new(nil, "surname")]]]
999
999
 
1000
- attr_accessor :abbreviated_number
1001
- attr_accessor :related_number
1000
+ attr_accessor :abbreviatedNumber
1001
+ attr_accessor :relatedNumber
1002
1002
  attr_accessor :name
1003
1003
  attr_accessor :surname
1004
1004
 
1005
- def initialize(abbreviated_number = nil, related_number = nil, name = nil, surname = nil)
1006
- @abbreviated_number = abbreviated_number
1007
- @related_number = related_number
1005
+ def initialize(abbreviatedNumber = nil, relatedNumber = nil, name = nil, surname = nil)
1006
+ @abbreviatedNumber = abbreviatedNumber
1007
+ @relatedNumber = relatedNumber
1008
1008
  @name = name
1009
1009
  @surname = surname
1010
1010
  end
@@ -1016,12 +1016,12 @@ class TelephonyDirectoryPJHeadingStruct
1016
1016
  @@schema_ns = "http://soapi.ovh.com/manager"
1017
1017
  @@schema_element = [["codePJ", ["SOAP::SOAPString", XSD::QName.new(nil, "codePJ")]], ["labelPJ", ["SOAP::SOAPString", XSD::QName.new(nil, "labelPJ")]]]
1018
1018
 
1019
- attr_accessor :code_pj
1020
- attr_accessor :label_pj
1019
+ attr_accessor :codePJ
1020
+ attr_accessor :labelPJ
1021
1021
 
1022
- def initialize(code_pj = nil, label_pj = nil)
1023
- @code_pj = code_pj
1024
- @label_pj = label_pj
1022
+ def initialize(codePJ = nil, labelPJ = nil)
1023
+ @codePJ = codePJ
1024
+ @labelPJ = labelPJ
1025
1025
  end
1026
1026
  end
1027
1027
 
@@ -1033,48 +1033,48 @@ class TelephonyDirectoryInfoReturn
1033
1033
 
1034
1034
  attr_accessor :number
1035
1035
  attr_accessor :name
1036
- attr_accessor :first_name
1036
+ attr_accessor :firstName
1037
1037
  attr_accessor :address
1038
- attr_accessor :way_number
1039
- attr_accessor :way_type
1040
- attr_accessor :way_name
1038
+ attr_accessor :wayNumber
1039
+ attr_accessor :wayType
1040
+ attr_accessor :wayName
1041
1041
  attr_accessor :building
1042
1042
  attr_accessor :floor
1043
- attr_accessor :stair_case
1043
+ attr_accessor :stairCase
1044
1044
  attr_accessor :door
1045
1045
  attr_accessor :block
1046
1046
  attr_accessor :lodge
1047
- attr_accessor :place_name
1048
- attr_accessor :urban_district
1047
+ attr_accessor :placeName
1048
+ attr_accessor :urbanDistrict
1049
1049
  attr_accessor :district
1050
- attr_accessor :extra_address
1051
- attr_accessor :post_box
1050
+ attr_accessor :extraAddress
1051
+ attr_accessor :postBox
1052
1052
  attr_accessor :cedex
1053
- attr_accessor :post_code
1053
+ attr_accessor :postCode
1054
1054
  attr_accessor :city
1055
1055
  attr_accessor :country
1056
1056
  attr_accessor :email
1057
- attr_accessor :legal_form
1057
+ attr_accessor :legalForm
1058
1058
  attr_accessor :occupation
1059
- attr_accessor :social_nomination
1060
- attr_accessor :social_nomination_extra
1061
- attr_accessor :line_description
1059
+ attr_accessor :socialNomination
1060
+ attr_accessor :socialNominationExtra
1061
+ attr_accessor :lineDescription
1062
1062
  attr_accessor :siret
1063
1063
  attr_accessor :ape
1064
- attr_accessor :display_first_name
1065
- attr_accessor :display_only_city
1066
- attr_accessor :display_universal_directory
1067
- attr_accessor :display_marketing_directory
1068
- attr_accessor :display_search_reverse
1069
- attr_accessor :receive_pj_directory
1070
- attr_accessor :insee_code
1064
+ attr_accessor :displayFirstName
1065
+ attr_accessor :displayOnlyCity
1066
+ attr_accessor :displayUniversalDirectory
1067
+ attr_accessor :displayMarketingDirectory
1068
+ attr_accessor :displaySearchReverse
1069
+ attr_accessor :receivePJDirectory
1070
+ attr_accessor :inseeCode
1071
1071
 
1072
1072
  def PJSocialNomination
1073
1073
  @pJSocialNomination
1074
1074
  end
1075
1075
 
1076
1076
  def PJSocialNomination=(value)
1077
- @p_j_social_nomination = p_j_social_nomination
1077
+ @pJSocialNomination = value
1078
1078
  end
1079
1079
 
1080
1080
  def PJHeading
@@ -1082,49 +1082,49 @@ class TelephonyDirectoryInfoReturn
1082
1082
  end
1083
1083
 
1084
1084
  def PJHeading=(value)
1085
- @p_j_heading = p_j_heading
1085
+ @pJHeading = value
1086
1086
  end
1087
1087
 
1088
- def initialize(number = nil, name = nil, first_name = nil, address = nil, way_number = nil, way_type = nil, way_name = nil, building = nil, floor = nil, stair_case = nil, door = nil, block = nil, lodge = nil, place_name = nil, urban_district = nil, district = nil, extra_address = nil, post_box = nil, cedex = nil, post_code = nil, city = nil, country = nil, email = nil, legal_form = nil, occupation = nil, social_nomination = nil, p_j_social_nomination = nil, social_nomination_extra = nil, line_description = nil, siret = nil, ape = nil, display_first_name = nil, display_only_city = nil, display_universal_directory = nil, display_marketing_directory = nil, display_search_reverse = nil, receive_pj_directory = nil, insee_code = nil, p_j_heading = nil)
1088
+ def initialize(number = nil, name = nil, firstName = nil, address = nil, wayNumber = nil, wayType = nil, wayName = nil, building = nil, floor = nil, stairCase = nil, door = nil, block = nil, lodge = nil, placeName = nil, urbanDistrict = nil, district = nil, extraAddress = nil, postBox = nil, cedex = nil, postCode = nil, city = nil, country = nil, email = nil, legalForm = nil, occupation = nil, socialNomination = nil, pJSocialNomination = nil, socialNominationExtra = nil, lineDescription = nil, siret = nil, ape = nil, displayFirstName = nil, displayOnlyCity = nil, displayUniversalDirectory = nil, displayMarketingDirectory = nil, displaySearchReverse = nil, receivePJDirectory = nil, inseeCode = nil, pJHeading = nil)
1089
1089
  @number = number
1090
1090
  @name = name
1091
- @first_name = first_name
1091
+ @firstName = firstName
1092
1092
  @address = address
1093
- @way_number = way_number
1094
- @way_type = way_type
1095
- @way_name = way_name
1093
+ @wayNumber = wayNumber
1094
+ @wayType = wayType
1095
+ @wayName = wayName
1096
1096
  @building = building
1097
1097
  @floor = floor
1098
- @stair_case = stair_case
1098
+ @stairCase = stairCase
1099
1099
  @door = door
1100
1100
  @block = block
1101
1101
  @lodge = lodge
1102
- @place_name = place_name
1103
- @urban_district = urban_district
1102
+ @placeName = placeName
1103
+ @urbanDistrict = urbanDistrict
1104
1104
  @district = district
1105
- @extra_address = extra_address
1106
- @post_box = post_box
1105
+ @extraAddress = extraAddress
1106
+ @postBox = postBox
1107
1107
  @cedex = cedex
1108
- @post_code = post_code
1108
+ @postCode = postCode
1109
1109
  @city = city
1110
1110
  @country = country
1111
1111
  @email = email
1112
- @legal_form = legal_form
1112
+ @legalForm = legalForm
1113
1113
  @occupation = occupation
1114
- @social_nomination = social_nomination
1115
- @p_j_social_nomination = p_j_social_nomination
1116
- @social_nomination_extra = social_nomination_extra
1117
- @line_description = line_description
1114
+ @socialNomination = socialNomination
1115
+ @pJSocialNomination = pJSocialNomination
1116
+ @socialNominationExtra = socialNominationExtra
1117
+ @lineDescription = lineDescription
1118
1118
  @siret = siret
1119
1119
  @ape = ape
1120
- @display_first_name = display_first_name
1121
- @display_only_city = display_only_city
1122
- @display_universal_directory = display_universal_directory
1123
- @display_marketing_directory = display_marketing_directory
1124
- @display_search_reverse = display_search_reverse
1125
- @receive_pj_directory = receive_pj_directory
1126
- @insee_code = insee_code
1127
- @p_j_heading = p_j_heading
1120
+ @displayFirstName = displayFirstName
1121
+ @displayOnlyCity = displayOnlyCity
1122
+ @displayUniversalDirectory = displayUniversalDirectory
1123
+ @displayMarketingDirectory = displayMarketingDirectory
1124
+ @displaySearchReverse = displaySearchReverse
1125
+ @receivePJDirectory = receivePJDirectory
1126
+ @inseeCode = inseeCode
1127
+ @pJHeading = pJHeading
1128
1128
  end
1129
1129
  end
1130
1130
 
@@ -1134,14 +1134,14 @@ class TelephonyFunctionKeyStruct
1134
1134
  @@schema_ns = "http://soapi.ovh.com/manager"
1135
1135
  @@schema_element = [["keyNum", ["SOAP::SOAPInt", XSD::QName.new(nil, "keyNum")]], ["function", ["SOAP::SOAPString", XSD::QName.new(nil, "function")]], ["relatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "relatedNumber")]]]
1136
1136
 
1137
- attr_accessor :key_num
1137
+ attr_accessor :keyNum
1138
1138
  attr_accessor :function
1139
- attr_accessor :related_number
1139
+ attr_accessor :relatedNumber
1140
1140
 
1141
- def initialize(key_num = nil, function = nil, related_number = nil)
1142
- @key_num = key_num
1141
+ def initialize(keyNum = nil, function = nil, relatedNumber = nil)
1142
+ @keyNum = keyNum
1143
1143
  @function = function
1144
- @related_number = related_number
1144
+ @relatedNumber = relatedNumber
1145
1145
  end
1146
1146
  end
1147
1147
 
@@ -1151,36 +1151,36 @@ class TelephonyFaxOptionsListReturn
1151
1151
  @@schema_ns = "http://soapi.ovh.com/manager"
1152
1152
  @@schema_element = [["callNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "callNumber")]], ["countryCode", ["SOAP::SOAPString", XSD::QName.new(nil, "countryCode")]], ["fromName", ["SOAP::SOAPString", XSD::QName.new(nil, "fromName")]], ["fromEmail", ["SOAP::SOAPString", XSD::QName.new(nil, "fromEmail")]], ["faxQuality", ["SOAP::SOAPString", XSD::QName.new(nil, "faxQuality")]], ["faxTagLine", ["SOAP::SOAPString", XSD::QName.new(nil, "faxTagLine")]], ["faxMaxCall", ["SOAP::SOAPInt", XSD::QName.new(nil, "faxMaxCall")]], ["receivId", ["SOAP::SOAPString", XSD::QName.new(nil, "receivId")]], ["senderId", ["SOAP::SOAPString", XSD::QName.new(nil, "senderId")]], ["redirection1Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection1Email")]], ["redirection2Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection2Email")]], ["redirection3Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection3Email")]], ["redirection4Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection4Email")]], ["redirection5Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection5Email")]]]
1153
1153
 
1154
- attr_accessor :call_number
1155
- attr_accessor :country_code
1156
- attr_accessor :from_name
1157
- attr_accessor :from_email
1158
- attr_accessor :fax_quality
1159
- attr_accessor :fax_tag_line
1160
- attr_accessor :fax_max_call
1161
- attr_accessor :receiv_id
1162
- attr_accessor :sender_id
1163
- attr_accessor :redirection1_email
1164
- attr_accessor :redirection2_email
1165
- attr_accessor :redirection3_email
1166
- attr_accessor :redirection4_email
1167
- attr_accessor :redirection5_email
1168
-
1169
- def initialize(call_number = nil, country_code = nil, from_name = nil, from_email = nil, fax_quality = nil, fax_tag_line = nil, fax_max_call = nil, receiv_id = nil, sender_id = nil, redirection1_email = nil, redirection2_email = nil, redirection3_email = nil, redirection4_email = nil, redirection5_email = nil)
1170
- @call_number = call_number
1171
- @country_code = country_code
1172
- @from_name = from_name
1173
- @from_email = from_email
1174
- @fax_quality = fax_quality
1175
- @fax_tag_line = fax_tag_line
1176
- @fax_max_call = fax_max_call
1177
- @receiv_id = receiv_id
1178
- @sender_id = sender_id
1179
- @redirection1_email = redirection1_email
1180
- @redirection2_email = redirection2_email
1181
- @redirection3_email = redirection3_email
1182
- @redirection4_email = redirection4_email
1183
- @redirection5_email = redirection5_email
1154
+ attr_accessor :callNumber
1155
+ attr_accessor :countryCode
1156
+ attr_accessor :fromName
1157
+ attr_accessor :fromEmail
1158
+ attr_accessor :faxQuality
1159
+ attr_accessor :faxTagLine
1160
+ attr_accessor :faxMaxCall
1161
+ attr_accessor :receivId
1162
+ attr_accessor :senderId
1163
+ attr_accessor :redirection1Email
1164
+ attr_accessor :redirection2Email
1165
+ attr_accessor :redirection3Email
1166
+ attr_accessor :redirection4Email
1167
+ attr_accessor :redirection5Email
1168
+
1169
+ def initialize(callNumber = nil, countryCode = nil, fromName = nil, fromEmail = nil, faxQuality = nil, faxTagLine = nil, faxMaxCall = nil, receivId = nil, senderId = nil, redirection1Email = nil, redirection2Email = nil, redirection3Email = nil, redirection4Email = nil, redirection5Email = nil)
1170
+ @callNumber = callNumber
1171
+ @countryCode = countryCode
1172
+ @fromName = fromName
1173
+ @fromEmail = fromEmail
1174
+ @faxQuality = faxQuality
1175
+ @faxTagLine = faxTagLine
1176
+ @faxMaxCall = faxMaxCall
1177
+ @receivId = receivId
1178
+ @senderId = senderId
1179
+ @redirection1Email = redirection1Email
1180
+ @redirection2Email = redirection2Email
1181
+ @redirection3Email = redirection3Email
1182
+ @redirection4Email = redirection4Email
1183
+ @redirection5Email = redirection5Email
1184
1184
  end
1185
1185
  end
1186
1186
 
@@ -1191,25 +1191,25 @@ class TelephonyFaxHistoryStruct
1191
1191
  @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["relatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "relatedNumber")]], ["jobid", ["SOAP::SOAPInt", XSD::QName.new(nil, "jobid")]], ["jobtag", ["SOAP::SOAPString", XSD::QName.new(nil, "jobtag")]], ["sender", ["SOAP::SOAPString", XSD::QName.new(nil, "sender")]], ["pages", ["SOAP::SOAPInt", XSD::QName.new(nil, "pages")]], ["quality", ["SOAP::SOAPString", XSD::QName.new(nil, "quality")]], ["callTime", ["SOAP::SOAPString", XSD::QName.new(nil, "callTime")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["state", ["SOAP::SOAPString", XSD::QName.new(nil, "state")]]]
1192
1192
 
1193
1193
  attr_accessor :id
1194
- attr_accessor :related_number
1194
+ attr_accessor :relatedNumber
1195
1195
  attr_accessor :jobid
1196
1196
  attr_accessor :jobtag
1197
1197
  attr_accessor :sender
1198
1198
  attr_accessor :pages
1199
1199
  attr_accessor :quality
1200
- attr_accessor :call_time
1200
+ attr_accessor :callTime
1201
1201
  attr_accessor :date
1202
1202
  attr_accessor :state
1203
1203
 
1204
- def initialize(id = nil, related_number = nil, jobid = nil, jobtag = nil, sender = nil, pages = nil, quality = nil, call_time = nil, date = nil, state = nil)
1204
+ def initialize(id = nil, relatedNumber = nil, jobid = nil, jobtag = nil, sender = nil, pages = nil, quality = nil, callTime = nil, date = nil, state = nil)
1205
1205
  @id = id
1206
- @related_number = related_number
1206
+ @relatedNumber = relatedNumber
1207
1207
  @jobid = jobid
1208
1208
  @jobtag = jobtag
1209
1209
  @sender = sender
1210
1210
  @pages = pages
1211
1211
  @quality = quality
1212
- @call_time = call_time
1212
+ @callTime = callTime
1213
1213
  @date = date
1214
1214
  @state = state
1215
1215
  end
@@ -1224,27 +1224,27 @@ class TelephonyPortabilityStruct
1224
1224
  attr_accessor :id
1225
1225
  attr_accessor :number
1226
1226
  attr_accessor :name
1227
- attr_accessor :plan_date
1228
- attr_accessor :billing_account
1227
+ attr_accessor :planDate
1228
+ attr_accessor :billingAccount
1229
1229
  attr_accessor :type
1230
1230
  attr_accessor :operator
1231
1231
  attr_accessor :status
1232
1232
  attr_accessor :reason
1233
- attr_accessor :asking_customer
1234
- attr_accessor :extra_numbers
1233
+ attr_accessor :askingCustomer
1234
+ attr_accessor :extraNumbers
1235
1235
 
1236
- def initialize(id = nil, number = nil, name = nil, plan_date = nil, billing_account = nil, type = nil, operator = nil, status = nil, reason = nil, asking_customer = nil, extra_numbers = nil)
1236
+ def initialize(id = nil, number = nil, name = nil, planDate = nil, billingAccount = nil, type = nil, operator = nil, status = nil, reason = nil, askingCustomer = nil, extraNumbers = nil)
1237
1237
  @id = id
1238
1238
  @number = number
1239
1239
  @name = name
1240
- @plan_date = plan_date
1241
- @billing_account = billing_account
1240
+ @planDate = planDate
1241
+ @billingAccount = billingAccount
1242
1242
  @type = type
1243
1243
  @operator = operator
1244
1244
  @status = status
1245
1245
  @reason = reason
1246
- @asking_customer = asking_customer
1247
- @extra_numbers = extra_numbers
1246
+ @askingCustomer = askingCustomer
1247
+ @extraNumbers = extraNumbers
1248
1248
  end
1249
1249
  end
1250
1250
 
@@ -1254,16 +1254,16 @@ class TelephonyNumberOrderReturn
1254
1254
  @@schema_ns = "http://soapi.ovh.com/manager"
1255
1255
  @@schema_element = [["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]], ["totalPrice", ["SOAP::SOAPFloat", XSD::QName.new(nil, "totalPrice")]]]
1256
1256
 
1257
- attr_accessor :order_id
1258
- attr_accessor :order_password
1259
- attr_accessor :order_url
1260
- attr_accessor :total_price
1257
+ attr_accessor :orderId
1258
+ attr_accessor :orderPassword
1259
+ attr_accessor :orderUrl
1260
+ attr_accessor :totalPrice
1261
1261
 
1262
- def initialize(order_id = nil, order_password = nil, order_url = nil, total_price = nil)
1263
- @order_id = order_id
1264
- @order_password = order_password
1265
- @order_url = order_url
1266
- @total_price = total_price
1262
+ def initialize(orderId = nil, orderPassword = nil, orderUrl = nil, totalPrice = nil)
1263
+ @orderId = orderId
1264
+ @orderPassword = orderPassword
1265
+ @orderUrl = orderUrl
1266
+ @totalPrice = totalPrice
1267
1267
  end
1268
1268
  end
1269
1269
 
@@ -1289,11 +1289,11 @@ class TelephonyNumberCityForZoneStruct
1289
1289
  @@schema_element = [["city", ["SOAP::SOAPString", XSD::QName.new(nil, "city")]], ["postalCode", ["SOAP::SOAPString", XSD::QName.new(nil, "postalCode")]]]
1290
1290
 
1291
1291
  attr_accessor :city
1292
- attr_accessor :postal_code
1292
+ attr_accessor :postalCode
1293
1293
 
1294
- def initialize(city = nil, postal_code = nil)
1294
+ def initialize(city = nil, postalCode = nil)
1295
1295
  @city = city
1296
- @postal_code = postal_code
1296
+ @postalCode = postalCode
1297
1297
  end
1298
1298
  end
1299
1299
 
@@ -1303,16 +1303,16 @@ class TelephonyTonesOptionsListReturn
1303
1303
  @@schema_ns = "http://soapi.ovh.com/manager"
1304
1304
  @@schema_element = [["toneRingback", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneRingback")]], ["toneOnHold", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneOnHold")]], ["toneOnClosure", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneOnClosure")]], ["toneOnCallWaiting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneOnCallWaiting")]]]
1305
1305
 
1306
- attr_accessor :tone_ringback
1307
- attr_accessor :tone_on_hold
1308
- attr_accessor :tone_on_closure
1309
- attr_accessor :tone_on_call_waiting
1306
+ attr_accessor :toneRingback
1307
+ attr_accessor :toneOnHold
1308
+ attr_accessor :toneOnClosure
1309
+ attr_accessor :toneOnCallWaiting
1310
1310
 
1311
- def initialize(tone_ringback = nil, tone_on_hold = nil, tone_on_closure = nil, tone_on_call_waiting = nil)
1312
- @tone_ringback = tone_ringback
1313
- @tone_on_hold = tone_on_hold
1314
- @tone_on_closure = tone_on_closure
1315
- @tone_on_call_waiting = tone_on_call_waiting
1311
+ def initialize(toneRingback = nil, toneOnHold = nil, toneOnClosure = nil, toneOnCallWaiting = nil)
1312
+ @toneRingback = toneRingback
1313
+ @toneOnHold = toneOnHold
1314
+ @toneOnClosure = toneOnClosure
1315
+ @toneOnCallWaiting = toneOnCallWaiting
1316
1316
  end
1317
1317
  end
1318
1318
 
@@ -1342,12 +1342,12 @@ class TelephonyDdiInfoReturn
1342
1342
  @@schema_element = [["number", ["SOAP::SOAPString", XSD::QName.new(nil, "number")]], ["noReplyTimer", ["SOAP::SOAPInt", XSD::QName.new(nil, "noReplyTimer")]], ["logged", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "logged")]]]
1343
1343
 
1344
1344
  attr_accessor :number
1345
- attr_accessor :no_reply_timer
1345
+ attr_accessor :noReplyTimer
1346
1346
  attr_accessor :logged
1347
1347
 
1348
- def initialize(number = nil, no_reply_timer = nil, logged = nil)
1348
+ def initialize(number = nil, noReplyTimer = nil, logged = nil)
1349
1349
  @number = number
1350
- @no_reply_timer = no_reply_timer
1350
+ @noReplyTimer = noReplyTimer
1351
1351
  @logged = logged
1352
1352
  end
1353
1353
  end
@@ -1361,27 +1361,27 @@ class TelephonyHuntingInfoReturn
1361
1361
  attr_accessor :members
1362
1362
  attr_accessor :strategy
1363
1363
  attr_accessor :pattern
1364
- attr_accessor :on_hold_timer
1365
- attr_accessor :queue_size
1366
- attr_accessor :number_of_calls
1367
- attr_accessor :no_reply_timer
1368
- attr_accessor :main_voicemail
1369
- attr_accessor :tone_on_hold
1370
- attr_accessor :tone_ringback
1371
- attr_accessor :tone_on_closure
1372
-
1373
- def initialize(members = nil, strategy = nil, pattern = nil, on_hold_timer = nil, queue_size = nil, number_of_calls = nil, no_reply_timer = nil, main_voicemail = nil, tone_on_hold = nil, tone_ringback = nil, tone_on_closure = nil)
1364
+ attr_accessor :onHoldTimer
1365
+ attr_accessor :queueSize
1366
+ attr_accessor :numberOfCalls
1367
+ attr_accessor :noReplyTimer
1368
+ attr_accessor :mainVoicemail
1369
+ attr_accessor :toneOnHold
1370
+ attr_accessor :toneRingback
1371
+ attr_accessor :toneOnClosure
1372
+
1373
+ def initialize(members = nil, strategy = nil, pattern = nil, onHoldTimer = nil, queueSize = nil, numberOfCalls = nil, noReplyTimer = nil, mainVoicemail = nil, toneOnHold = nil, toneRingback = nil, toneOnClosure = nil)
1374
1374
  @members = members
1375
1375
  @strategy = strategy
1376
1376
  @pattern = pattern
1377
- @on_hold_timer = on_hold_timer
1378
- @queue_size = queue_size
1379
- @number_of_calls = number_of_calls
1380
- @no_reply_timer = no_reply_timer
1381
- @main_voicemail = main_voicemail
1382
- @tone_on_hold = tone_on_hold
1383
- @tone_ringback = tone_ringback
1384
- @tone_on_closure = tone_on_closure
1377
+ @onHoldTimer = onHoldTimer
1378
+ @queueSize = queueSize
1379
+ @numberOfCalls = numberOfCalls
1380
+ @noReplyTimer = noReplyTimer
1381
+ @mainVoicemail = mainVoicemail
1382
+ @toneOnHold = toneOnHold
1383
+ @toneRingback = toneRingback
1384
+ @toneOnClosure = toneOnClosure
1385
1385
  end
1386
1386
  end
1387
1387
 
@@ -1394,13 +1394,13 @@ class TelephonyHuntingInfoMemberStruct
1394
1394
  attr_accessor :number
1395
1395
  attr_accessor :status
1396
1396
  attr_accessor :logged
1397
- attr_accessor :no_reply_timer
1397
+ attr_accessor :noReplyTimer
1398
1398
 
1399
- def initialize(number = nil, status = nil, logged = nil, no_reply_timer = nil)
1399
+ def initialize(number = nil, status = nil, logged = nil, noReplyTimer = nil)
1400
1400
  @number = number
1401
1401
  @status = status
1402
1402
  @logged = logged
1403
- @no_reply_timer = no_reply_timer
1403
+ @noReplyTimer = noReplyTimer
1404
1404
  end
1405
1405
  end
1406
1406
 
@@ -1411,11 +1411,11 @@ class TelephonyScreenStruct
1411
1411
  @@schema_element = [["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["numberScreen", ["SOAP::SOAPString", XSD::QName.new(nil, "numberScreen")]]]
1412
1412
 
1413
1413
  attr_accessor :status
1414
- attr_accessor :number_screen
1414
+ attr_accessor :numberScreen
1415
1415
 
1416
- def initialize(status = nil, number_screen = nil)
1416
+ def initialize(status = nil, numberScreen = nil)
1417
1417
  @status = status
1418
- @number_screen = number_screen
1418
+ @numberScreen = numberScreen
1419
1419
  end
1420
1420
  end
1421
1421
 
@@ -1425,14 +1425,14 @@ class TelephonyScreenBlackWhiteChoiceReturn
1425
1425
  @@schema_ns = "http://soapi.ovh.com/manager"
1426
1426
  @@schema_element = [["incomingScreenlist", ["SOAP::SOAPString", XSD::QName.new(nil, "incomingScreenlist")]], ["outgoingScreenlist", ["SOAP::SOAPString", XSD::QName.new(nil, "outgoingScreenlist")]], ["outgoingCodeUnlock", ["SOAP::SOAPString", XSD::QName.new(nil, "outgoingCodeUnlock")]]]
1427
1427
 
1428
- attr_accessor :incoming_screenlist
1429
- attr_accessor :outgoing_screenlist
1430
- attr_accessor :outgoing_code_unlock
1428
+ attr_accessor :incomingScreenlist
1429
+ attr_accessor :outgoingScreenlist
1430
+ attr_accessor :outgoingCodeUnlock
1431
1431
 
1432
- def initialize(incoming_screenlist = nil, outgoing_screenlist = nil, outgoing_code_unlock = nil)
1433
- @incoming_screenlist = incoming_screenlist
1434
- @outgoing_screenlist = outgoing_screenlist
1435
- @outgoing_code_unlock = outgoing_code_unlock
1432
+ def initialize(incomingScreenlist = nil, outgoingScreenlist = nil, outgoingCodeUnlock = nil)
1433
+ @incomingScreenlist = incomingScreenlist
1434
+ @outgoingScreenlist = outgoingScreenlist
1435
+ @outgoingCodeUnlock = outgoingCodeUnlock
1436
1436
  end
1437
1437
  end
1438
1438
 
@@ -1443,15 +1443,15 @@ class TelephonyHuntingGenericScreenStruct
1443
1443
  @@schema_element = [["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["timeEnd", ["SOAP::SOAPString", XSD::QName.new(nil, "timeEnd")]], ["timeStart", ["SOAP::SOAPString", XSD::QName.new(nil, "timeStart")]], ["dayType", ["SOAP::SOAPString", XSD::QName.new(nil, "dayType")]]]
1444
1444
 
1445
1445
  attr_accessor :status
1446
- attr_accessor :time_end
1447
- attr_accessor :time_start
1448
- attr_accessor :day_type
1446
+ attr_accessor :timeEnd
1447
+ attr_accessor :timeStart
1448
+ attr_accessor :dayType
1449
1449
 
1450
- def initialize(status = nil, time_end = nil, time_start = nil, day_type = nil)
1450
+ def initialize(status = nil, timeEnd = nil, timeStart = nil, dayType = nil)
1451
1451
  @status = status
1452
- @time_end = time_end
1453
- @time_start = time_start
1454
- @day_type = day_type
1452
+ @timeEnd = timeEnd
1453
+ @timeStart = timeStart
1454
+ @dayType = dayType
1455
1455
  end
1456
1456
  end
1457
1457
 
@@ -1461,12 +1461,12 @@ class TelephonyHuntingGenericScreenOptionsReturn
1461
1461
  @@schema_ns = "http://soapi.ovh.com/manager"
1462
1462
  @@schema_element = [["forwardUnconditionalNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardUnconditionalNumber")]], ["mainVoicemail", ["SOAP::SOAPString", XSD::QName.new(nil, "mainVoicemail")]]]
1463
1463
 
1464
- attr_accessor :forward_unconditional_number
1465
- attr_accessor :main_voicemail
1464
+ attr_accessor :forwardUnconditionalNumber
1465
+ attr_accessor :mainVoicemail
1466
1466
 
1467
- def initialize(forward_unconditional_number = nil, main_voicemail = nil)
1468
- @forward_unconditional_number = forward_unconditional_number
1469
- @main_voicemail = main_voicemail
1467
+ def initialize(forwardUnconditionalNumber = nil, mainVoicemail = nil)
1468
+ @forwardUnconditionalNumber = forwardUnconditionalNumber
1469
+ @mainVoicemail = mainVoicemail
1470
1470
  end
1471
1471
  end
1472
1472
 
@@ -1479,16 +1479,16 @@ class TelephonyPlugAndPhoneInfoReturn
1479
1479
  attr_accessor :brand
1480
1480
  attr_accessor :protocol
1481
1481
  attr_accessor :mac
1482
- attr_accessor :gf_key_count
1483
- attr_accessor :pb_level
1482
+ attr_accessor :gfKeyCount
1483
+ attr_accessor :pbLevel
1484
1484
  attr_accessor :skin
1485
1485
 
1486
- def initialize(brand = nil, protocol = nil, mac = nil, gf_key_count = nil, pb_level = nil, skin = nil)
1486
+ def initialize(brand = nil, protocol = nil, mac = nil, gfKeyCount = nil, pbLevel = nil, skin = nil)
1487
1487
  @brand = brand
1488
1488
  @protocol = protocol
1489
1489
  @mac = mac
1490
- @gf_key_count = gf_key_count
1491
- @pb_level = pb_level
1490
+ @gfKeyCount = gfKeyCount
1491
+ @pbLevel = pbLevel
1492
1492
  @skin = skin
1493
1493
  end
1494
1494
  end
@@ -1699,7 +1699,7 @@ class NicInfoReturn
1699
1699
  attr_accessor :name
1700
1700
  attr_accessor :firstname
1701
1701
  attr_accessor :email
1702
- attr_accessor :spare_email
1702
+ attr_accessor :spareEmail
1703
1703
  attr_accessor :phone
1704
1704
  attr_accessor :fax
1705
1705
  attr_accessor :address
@@ -1710,18 +1710,18 @@ class NicInfoReturn
1710
1710
  attr_accessor :language
1711
1711
  attr_accessor :legalform
1712
1712
  attr_accessor :organisation
1713
- attr_accessor :legal_name
1714
- attr_accessor :legal_number
1713
+ attr_accessor :legalName
1714
+ attr_accessor :legalNumber
1715
1715
  attr_accessor :vat
1716
- attr_accessor :is_owner
1717
- attr_accessor :billing_country
1716
+ attr_accessor :isOwner
1717
+ attr_accessor :billingCountry
1718
1718
 
1719
- def initialize(nic = nil, name = nil, firstname = nil, email = nil, spare_email = nil, phone = nil, fax = nil, address = nil, city = nil, area = nil, zip = nil, country = nil, language = nil, legalform = nil, organisation = nil, legal_name = nil, legal_number = nil, vat = nil, is_owner = nil, billing_country = nil)
1719
+ def initialize(nic = nil, name = nil, firstname = nil, email = nil, spareEmail = nil, phone = nil, fax = nil, address = nil, city = nil, area = nil, zip = nil, country = nil, language = nil, legalform = nil, organisation = nil, legalName = nil, legalNumber = nil, vat = nil, isOwner = nil, billingCountry = nil)
1720
1720
  @nic = nic
1721
1721
  @name = name
1722
1722
  @firstname = firstname
1723
1723
  @email = email
1724
- @spare_email = spare_email
1724
+ @spareEmail = spareEmail
1725
1725
  @phone = phone
1726
1726
  @fax = fax
1727
1727
  @address = address
@@ -1732,11 +1732,11 @@ class NicInfoReturn
1732
1732
  @language = language
1733
1733
  @legalform = legalform
1734
1734
  @organisation = organisation
1735
- @legal_name = legal_name
1736
- @legal_number = legal_number
1735
+ @legalName = legalName
1736
+ @legalNumber = legalNumber
1737
1737
  @vat = vat
1738
- @is_owner = is_owner
1739
- @billing_country = billing_country
1738
+ @isOwner = isOwner
1739
+ @billingCountry = billingCountry
1740
1740
  end
1741
1741
  end
1742
1742
 
@@ -1786,19 +1786,19 @@ class RpsGetIOStatsDetailStruct
1786
1786
  @@schema_ns = "http://soapi.ovh.com/manager"
1787
1787
  @@schema_element = [["serviceTime", ["RpsGetIOStatsDetailRawStruct", XSD::QName.new(nil, "serviceTime")]], ["ioRequests", ["RpsGetIOStatsDetailIoRequestsStruct", XSD::QName.new(nil, "IoRequests")]]]
1788
1788
 
1789
- attr_accessor :service_time
1789
+ attr_accessor :serviceTime
1790
1790
 
1791
1791
  def IoRequests
1792
1792
  @ioRequests
1793
1793
  end
1794
1794
 
1795
1795
  def IoRequests=(value)
1796
- @io_requests = io_requests
1796
+ @ioRequests = value
1797
1797
  end
1798
1798
 
1799
- def initialize(service_time = nil, io_requests = nil)
1800
- @service_time = service_time
1801
- @io_requests = io_requests
1799
+ def initialize(serviceTime = nil, ioRequests = nil)
1800
+ @serviceTime = serviceTime
1801
+ @ioRequests = ioRequests
1802
1802
  end
1803
1803
  end
1804
1804
 
@@ -1837,25 +1837,25 @@ class RpsMigrationStatusReturn
1837
1837
  @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["progressStatus", ["SOAP::SOAPInt", XSD::QName.new(nil, "progressStatus")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["logicalRpsName", ["SOAP::SOAPString", XSD::QName.new(nil, "logicalRpsName")]], ["physicalRpsTo", ["SOAP::SOAPString", XSD::QName.new(nil, "physicalRpsTo")]], ["todoDate", ["SOAP::SOAPString", XSD::QName.new(nil, "todoDate")]], ["doingDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doingDate")]], ["doneDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doneDate")]], ["errorMessage", ["SOAP::SOAPString", XSD::QName.new(nil, "errorMessage")]]]
1838
1838
 
1839
1839
  attr_accessor :id
1840
- attr_accessor :progress_status
1840
+ attr_accessor :progressStatus
1841
1841
  attr_accessor :status
1842
- attr_accessor :logical_rps_name
1843
- attr_accessor :physical_rps_to
1844
- attr_accessor :todo_date
1845
- attr_accessor :doing_date
1846
- attr_accessor :done_date
1847
- attr_accessor :error_message
1848
-
1849
- def initialize(id = nil, progress_status = nil, status = nil, logical_rps_name = nil, physical_rps_to = nil, todo_date = nil, doing_date = nil, done_date = nil, error_message = nil)
1842
+ attr_accessor :logicalRpsName
1843
+ attr_accessor :physicalRpsTo
1844
+ attr_accessor :todoDate
1845
+ attr_accessor :doingDate
1846
+ attr_accessor :doneDate
1847
+ attr_accessor :errorMessage
1848
+
1849
+ def initialize(id = nil, progressStatus = nil, status = nil, logicalRpsName = nil, physicalRpsTo = nil, todoDate = nil, doingDate = nil, doneDate = nil, errorMessage = nil)
1850
1850
  @id = id
1851
- @progress_status = progress_status
1851
+ @progressStatus = progressStatus
1852
1852
  @status = status
1853
- @logical_rps_name = logical_rps_name
1854
- @physical_rps_to = physical_rps_to
1855
- @todo_date = todo_date
1856
- @doing_date = doing_date
1857
- @done_date = done_date
1858
- @error_message = error_message
1853
+ @logicalRpsName = logicalRpsName
1854
+ @physicalRpsTo = physicalRpsTo
1855
+ @todoDate = todoDate
1856
+ @doingDate = doingDate
1857
+ @doneDate = doneDate
1858
+ @errorMessage = errorMessage
1859
1859
  end
1860
1860
  end
1861
1861
 
@@ -1903,18 +1903,18 @@ class OrderStruct
1903
1903
  @@schema_ns = "http://soapi.ovh.com/manager"
1904
1904
  @@schema_element = [["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]], ["isPaid", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "isPaid")]], ["paymentStatus", ["SOAP::SOAPString", XSD::QName.new(nil, "paymentStatus")]]]
1905
1905
 
1906
- attr_accessor :order_id
1907
- attr_accessor :order_password
1908
- attr_accessor :order_url
1909
- attr_accessor :is_paid
1910
- attr_accessor :payment_status
1906
+ attr_accessor :orderId
1907
+ attr_accessor :orderPassword
1908
+ attr_accessor :orderUrl
1909
+ attr_accessor :isPaid
1910
+ attr_accessor :paymentStatus
1911
1911
 
1912
- def initialize(order_id = nil, order_password = nil, order_url = nil, is_paid = nil, payment_status = nil)
1913
- @order_id = order_id
1914
- @order_password = order_password
1915
- @order_url = order_url
1916
- @is_paid = is_paid
1917
- @payment_status = payment_status
1912
+ def initialize(orderId = nil, orderPassword = nil, orderUrl = nil, isPaid = nil, paymentStatus = nil)
1913
+ @orderId = orderId
1914
+ @orderPassword = orderPassword
1915
+ @orderUrl = orderUrl
1916
+ @isPaid = isPaid
1917
+ @paymentStatus = paymentStatus
1918
1918
  end
1919
1919
  end
1920
1920
 
@@ -1931,11 +1931,11 @@ class DedicatedNetworkInterfaceStruct
1931
1931
  attr_accessor :switch
1932
1932
  attr_accessor :icmp_drop
1933
1933
  attr_accessor :failover
1934
- attr_accessor :routed_to
1934
+ attr_accessor :routedTo
1935
1935
  attr_accessor :ssl
1936
1936
  attr_accessor :country
1937
1937
 
1938
- def initialize(reverse = nil, ip = nil, ipv6 = nil, mac = nil, switch = nil, icmp_drop = nil, failover = nil, routed_to = nil, ssl = nil, country = nil)
1938
+ def initialize(reverse = nil, ip = nil, ipv6 = nil, mac = nil, switch = nil, icmp_drop = nil, failover = nil, routedTo = nil, ssl = nil, country = nil)
1939
1939
  @reverse = reverse
1940
1940
  @ip = ip
1941
1941
  @ipv6 = ipv6
@@ -1943,7 +1943,7 @@ class DedicatedNetworkInterfaceStruct
1943
1943
  @switch = switch
1944
1944
  @icmp_drop = icmp_drop
1945
1945
  @failover = failover
1946
- @routed_to = routed_to
1946
+ @routedTo = routedTo
1947
1947
  @ssl = ssl
1948
1948
  @country = country
1949
1949
  end
@@ -1962,7 +1962,7 @@ class DedicatedNetworkTrafficDetailsStruct
1962
1962
  end
1963
1963
 
1964
1964
  def in=(value)
1965
- @v_in = v_in
1965
+ @v_in = value
1966
1966
  end
1967
1967
 
1968
1968
  def initialize(v_in = nil, out = nil)
@@ -1977,20 +1977,20 @@ class DedicatedNetworkTrafficStruct
1977
1977
  @@schema_ns = "http://soapi.ovh.com/manager"
1978
1978
  @@schema_element = [["lastUpdate", ["SOAP::SOAPString", XSD::QName.new(nil, "lastUpdate")]], ["currentQuota", ["DedicatedNetworkTrafficDetailsStruct", XSD::QName.new(nil, "currentQuota")]], ["monthlyTraffic", ["DedicatedNetworkTrafficDetailsStruct", XSD::QName.new(nil, "monthlyTraffic")]], ["nextTrafficReset", ["SOAP::SOAPString", XSD::QName.new(nil, "nextTrafficReset")]], ["monthlyQuota", ["SOAP::SOAPString", XSD::QName.new(nil, "monthlyQuota")]], ["nextQuotaReset", ["SOAP::SOAPString", XSD::QName.new(nil, "nextQuotaReset")]]]
1979
1979
 
1980
- attr_accessor :last_update
1981
- attr_accessor :current_quota
1982
- attr_accessor :monthly_traffic
1983
- attr_accessor :next_traffic_reset
1984
- attr_accessor :monthly_quota
1985
- attr_accessor :next_quota_reset
1980
+ attr_accessor :lastUpdate
1981
+ attr_accessor :currentQuota
1982
+ attr_accessor :monthlyTraffic
1983
+ attr_accessor :nextTrafficReset
1984
+ attr_accessor :monthlyQuota
1985
+ attr_accessor :nextQuotaReset
1986
1986
 
1987
- def initialize(last_update = nil, current_quota = nil, monthly_traffic = nil, next_traffic_reset = nil, monthly_quota = nil, next_quota_reset = nil)
1988
- @last_update = last_update
1989
- @current_quota = current_quota
1990
- @monthly_traffic = monthly_traffic
1991
- @next_traffic_reset = next_traffic_reset
1992
- @monthly_quota = monthly_quota
1993
- @next_quota_reset = next_quota_reset
1987
+ def initialize(lastUpdate = nil, currentQuota = nil, monthlyTraffic = nil, nextTrafficReset = nil, monthlyQuota = nil, nextQuotaReset = nil)
1988
+ @lastUpdate = lastUpdate
1989
+ @currentQuota = currentQuota
1990
+ @monthlyTraffic = monthlyTraffic
1991
+ @nextTrafficReset = nextTrafficReset
1992
+ @monthlyQuota = monthlyQuota
1993
+ @nextQuotaReset = nextQuotaReset
1994
1994
  end
1995
1995
  end
1996
1996
 
@@ -2004,21 +2004,21 @@ class DedicatedNetworkStruct
2004
2004
  attr_accessor :priority
2005
2005
  attr_accessor :connexion
2006
2006
  attr_accessor :bandwidth
2007
- attr_accessor :bandwidth_ovh_to_ovh
2008
- attr_accessor :bandwidth_ovh_to_internet
2009
- attr_accessor :bandwidth_internet_to_ovh
2007
+ attr_accessor :bandwidthOvhToOvh
2008
+ attr_accessor :bandwidthOvhToInternet
2009
+ attr_accessor :bandwidthInternetToOvh
2010
2010
  attr_accessor :over
2011
2011
  attr_accessor :interfaces
2012
2012
  attr_accessor :traffic
2013
2013
 
2014
- def initialize(type = nil, priority = nil, connexion = nil, bandwidth = nil, bandwidth_ovh_to_ovh = nil, bandwidth_ovh_to_internet = nil, bandwidth_internet_to_ovh = nil, over = nil, interfaces = nil, traffic = nil)
2014
+ def initialize(type = nil, priority = nil, connexion = nil, bandwidth = nil, bandwidthOvhToOvh = nil, bandwidthOvhToInternet = nil, bandwidthInternetToOvh = nil, over = nil, interfaces = nil, traffic = nil)
2015
2015
  @type = type
2016
2016
  @priority = priority
2017
2017
  @connexion = connexion
2018
2018
  @bandwidth = bandwidth
2019
- @bandwidth_ovh_to_ovh = bandwidth_ovh_to_ovh
2020
- @bandwidth_ovh_to_internet = bandwidth_ovh_to_internet
2021
- @bandwidth_internet_to_ovh = bandwidth_internet_to_ovh
2019
+ @bandwidthOvhToOvh = bandwidthOvhToOvh
2020
+ @bandwidthOvhToInternet = bandwidthOvhToInternet
2021
+ @bandwidthInternetToOvh = bandwidthInternetToOvh
2022
2022
  @over = over
2023
2023
  @interfaces = interfaces
2024
2024
  @traffic = traffic
@@ -2031,21 +2031,21 @@ class DedicatedCapabilityStruct
2031
2031
  @@schema_ns = "http://soapi.ovh.com/manager"
2032
2032
  @@schema_element = [["backupFtp", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupFtp")]], ["backupFtpServer", ["SOAP::SOAPString", XSD::QName.new(nil, "backupFtpServer")]], ["allocationBlockIp", ["SOAP::SOAPInt", XSD::QName.new(nil, "allocationBlockIp")]], ["additionalIp", ["SOAP::SOAPInt", XSD::QName.new(nil, "additionalIp")]], ["rootDevice", ["SOAP::SOAPString", XSD::QName.new(nil, "rootDevice")]], ["diskSize", ["SOAP::SOAPInt", XSD::QName.new(nil, "diskSize")]], ["tuning", ["SOAP::SOAPInt", XSD::QName.new(nil, "tuning")]]]
2033
2033
 
2034
- attr_accessor :backup_ftp
2035
- attr_accessor :backup_ftp_server
2036
- attr_accessor :allocation_block_ip
2037
- attr_accessor :additional_ip
2038
- attr_accessor :root_device
2039
- attr_accessor :disk_size
2034
+ attr_accessor :backupFtp
2035
+ attr_accessor :backupFtpServer
2036
+ attr_accessor :allocationBlockIp
2037
+ attr_accessor :additionalIp
2038
+ attr_accessor :rootDevice
2039
+ attr_accessor :diskSize
2040
2040
  attr_accessor :tuning
2041
2041
 
2042
- def initialize(backup_ftp = nil, backup_ftp_server = nil, allocation_block_ip = nil, additional_ip = nil, root_device = nil, disk_size = nil, tuning = nil)
2043
- @backup_ftp = backup_ftp
2044
- @backup_ftp_server = backup_ftp_server
2045
- @allocation_block_ip = allocation_block_ip
2046
- @additional_ip = additional_ip
2047
- @root_device = root_device
2048
- @disk_size = disk_size
2042
+ def initialize(backupFtp = nil, backupFtpServer = nil, allocationBlockIp = nil, additionalIp = nil, rootDevice = nil, diskSize = nil, tuning = nil)
2043
+ @backupFtp = backupFtp
2044
+ @backupFtpServer = backupFtpServer
2045
+ @allocationBlockIp = allocationBlockIp
2046
+ @additionalIp = additionalIp
2047
+ @rootDevice = rootDevice
2048
+ @diskSize = diskSize
2049
2049
  @tuning = tuning
2050
2050
  end
2051
2051
  end
@@ -2078,29 +2078,29 @@ class DedicatedInfoReturn
2078
2078
  attr_accessor :hostname
2079
2079
  attr_accessor :datacenter
2080
2080
  attr_accessor :os
2081
- attr_accessor :is_kim_sufi
2082
- attr_accessor :is_rps
2083
- attr_accessor :is_hg
2081
+ attr_accessor :isKimSufi
2082
+ attr_accessor :isRPS
2083
+ attr_accessor :isHG
2084
2084
  attr_accessor :num
2085
2085
  attr_accessor :rack
2086
- attr_accessor :country_billing
2086
+ attr_accessor :countryBilling
2087
2087
  attr_accessor :network
2088
2088
  attr_accessor :capability
2089
- attr_accessor :free_dom
2089
+ attr_accessor :freeDom
2090
2090
 
2091
- def initialize(hostname = nil, datacenter = nil, os = nil, is_kim_sufi = nil, is_rps = nil, is_hg = nil, num = nil, rack = nil, country_billing = nil, network = nil, capability = nil, free_dom = nil)
2091
+ def initialize(hostname = nil, datacenter = nil, os = nil, isKimSufi = nil, isRPS = nil, isHG = nil, num = nil, rack = nil, countryBilling = nil, network = nil, capability = nil, freeDom = nil)
2092
2092
  @hostname = hostname
2093
2093
  @datacenter = datacenter
2094
2094
  @os = os
2095
- @is_kim_sufi = is_kim_sufi
2096
- @is_rps = is_rps
2097
- @is_hg = is_hg
2095
+ @isKimSufi = isKimSufi
2096
+ @isRPS = isRPS
2097
+ @isHG = isHG
2098
2098
  @num = num
2099
2099
  @rack = rack
2100
- @country_billing = country_billing
2100
+ @countryBilling = countryBilling
2101
2101
  @network = network
2102
2102
  @capability = capability
2103
- @free_dom = free_dom
2103
+ @freeDom = freeDom
2104
2104
  end
2105
2105
  end
2106
2106
 
@@ -2291,7 +2291,7 @@ class DedicatedMrtgInfoStruct
2291
2291
  end
2292
2292
 
2293
2293
  def in=(value)
2294
- @v_in = v_in
2294
+ @v_in = value
2295
2295
  end
2296
2296
 
2297
2297
  def initialize(v_in = nil, out = nil)
@@ -2332,7 +2332,7 @@ class DedicatedHardRebootStatusReturn
2332
2332
  end
2333
2333
 
2334
2334
  def end=(value)
2335
- @v_end = v_end
2335
+ @v_end = value
2336
2336
  end
2337
2337
 
2338
2338
  def initialize(start = nil, v_end = nil)
@@ -2367,13 +2367,13 @@ class DedicatedFailoverStruct
2367
2367
  @@schema_element = [["ip", ["SOAP::SOAPString", XSD::QName.new(nil, "ip")]], ["routedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "routedTo")]], ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]], ["ssl", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ssl")]]]
2368
2368
 
2369
2369
  attr_accessor :ip
2370
- attr_accessor :routed_to
2370
+ attr_accessor :routedTo
2371
2371
  attr_accessor :comment
2372
2372
  attr_accessor :ssl
2373
2373
 
2374
- def initialize(ip = nil, routed_to = nil, comment = nil, ssl = nil)
2374
+ def initialize(ip = nil, routedTo = nil, comment = nil, ssl = nil)
2375
2375
  @ip = ip
2376
- @routed_to = routed_to
2376
+ @routedTo = routedTo
2377
2377
  @comment = comment
2378
2378
  @ssl = ssl
2379
2379
  end
@@ -2387,22 +2387,22 @@ class DedicatedFailoverRipeStruct
2387
2387
 
2388
2388
  attr_accessor :country
2389
2389
  attr_accessor :netname
2390
- attr_accessor :routed_to
2391
- attr_accessor :routing_status
2390
+ attr_accessor :routedTo
2391
+ attr_accessor :routingStatus
2392
2392
  attr_accessor :status
2393
- attr_accessor :addresses_number
2394
- attr_accessor :network_ip
2395
- attr_accessor :is_exclude
2393
+ attr_accessor :addressesNumber
2394
+ attr_accessor :networkIp
2395
+ attr_accessor :isExclude
2396
2396
 
2397
- def initialize(country = nil, netname = nil, routed_to = nil, routing_status = nil, status = nil, addresses_number = nil, network_ip = nil, is_exclude = nil)
2397
+ def initialize(country = nil, netname = nil, routedTo = nil, routingStatus = nil, status = nil, addressesNumber = nil, networkIp = nil, isExclude = nil)
2398
2398
  @country = country
2399
2399
  @netname = netname
2400
- @routed_to = routed_to
2401
- @routing_status = routing_status
2400
+ @routedTo = routedTo
2401
+ @routingStatus = routingStatus
2402
2402
  @status = status
2403
- @addresses_number = addresses_number
2404
- @network_ip = network_ip
2405
- @is_exclude = is_exclude
2403
+ @addressesNumber = addressesNumber
2404
+ @networkIp = networkIp
2405
+ @isExclude = isExclude
2406
2406
  end
2407
2407
  end
2408
2408
 
@@ -2412,16 +2412,16 @@ class DedicatedFilterIrcRuleStruct
2412
2412
  @@schema_ns = "http://soapi.ovh.com/manager"
2413
2413
  @@schema_element = [["fromIp", ["SOAP::SOAPString", XSD::QName.new(nil, "fromIp")]], ["fromPort", ["SOAP::SOAPString", XSD::QName.new(nil, "fromPort")]], ["toIp", ["SOAP::SOAPString", XSD::QName.new(nil, "toIp")]], ["toPort", ["SOAP::SOAPString", XSD::QName.new(nil, "toPort")]]]
2414
2414
 
2415
- attr_accessor :from_ip
2416
- attr_accessor :from_port
2417
- attr_accessor :to_ip
2418
- attr_accessor :to_port
2415
+ attr_accessor :fromIp
2416
+ attr_accessor :fromPort
2417
+ attr_accessor :toIp
2418
+ attr_accessor :toPort
2419
2419
 
2420
- def initialize(from_ip = nil, from_port = nil, to_ip = nil, to_port = nil)
2421
- @from_ip = from_ip
2422
- @from_port = from_port
2423
- @to_ip = to_ip
2424
- @to_port = to_port
2420
+ def initialize(fromIp = nil, fromPort = nil, toIp = nil, toPort = nil)
2421
+ @fromIp = fromIp
2422
+ @fromPort = fromPort
2423
+ @toIp = toIp
2424
+ @toPort = toPort
2425
2425
  end
2426
2426
  end
2427
2427
 
@@ -2431,14 +2431,14 @@ class DedicatedBackupFtpInfoReturn
2431
2431
  @@schema_ns = "http://soapi.ovh.com/manager"
2432
2432
  @@schema_element = [["ftpBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "ftpBackupName")]], ["quotaUsed", ["SOAP::SOAPInt", XSD::QName.new(nil, "quotaUsed")]], ["quotaSize", ["SOAP::SOAPInt", XSD::QName.new(nil, "quotaSize")]]]
2433
2433
 
2434
- attr_accessor :ftp_backup_name
2435
- attr_accessor :quota_used
2436
- attr_accessor :quota_size
2434
+ attr_accessor :ftpBackupName
2435
+ attr_accessor :quotaUsed
2436
+ attr_accessor :quotaSize
2437
2437
 
2438
- def initialize(ftp_backup_name = nil, quota_used = nil, quota_size = nil)
2439
- @ftp_backup_name = ftp_backup_name
2440
- @quota_used = quota_used
2441
- @quota_size = quota_size
2438
+ def initialize(ftpBackupName = nil, quotaUsed = nil, quotaSize = nil)
2439
+ @ftpBackupName = ftpBackupName
2440
+ @quotaUsed = quotaUsed
2441
+ @quotaSize = quotaSize
2442
2442
  end
2443
2443
  end
2444
2444
 
@@ -2448,42 +2448,42 @@ class DedicatedBackupListStruct
2448
2448
  @@schema_ns = "http://soapi.ovh.com/manager"
2449
2449
  @@schema_element = [["backupId", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupId")]], ["backupFeature", ["SOAP::SOAPString", XSD::QName.new(nil, "backupFeature")]], ["enable", ["SOAP::SOAPInt", XSD::QName.new(nil, "enable")]], ["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["backupSize", ["SOAP::SOAPString", XSD::QName.new(nil, "backupSize")]], ["sshPort", ["SOAP::SOAPInt", XSD::QName.new(nil, "sshPort")]], ["percentUsed", ["SOAP::SOAPString", XSD::QName.new(nil, "percentUsed")]], ["hostname", ["SOAP::SOAPString", XSD::QName.new(nil, "hostname")]], ["backupName", ["SOAP::SOAPString", XSD::QName.new(nil, "backupName")]], ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]], ["snapshotNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "snapshotNumber")]], ["superBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "superBackupName")]], ["backupType", ["SOAP::SOAPString", XSD::QName.new(nil, "backupType")]], ["src", ["MyArrayOfStringType", XSD::QName.new(nil, "src")]], ["include", ["MyArrayOfStringType", XSD::QName.new(nil, "include")]], ["exclude", ["MyArrayOfStringType", XSD::QName.new(nil, "exclude")]], ["excludeHard", ["MyArrayOfStringType", XSD::QName.new(nil, "excludeHard")]]]
2450
2450
 
2451
- attr_accessor :backup_id
2452
- attr_accessor :backup_feature
2451
+ attr_accessor :backupId
2452
+ attr_accessor :backupFeature
2453
2453
  attr_accessor :enable
2454
2454
  attr_accessor :language
2455
- attr_accessor :backup_size
2456
- attr_accessor :ssh_port
2457
- attr_accessor :percent_used
2455
+ attr_accessor :backupSize
2456
+ attr_accessor :sshPort
2457
+ attr_accessor :percentUsed
2458
2458
  attr_accessor :hostname
2459
- attr_accessor :backup_name
2459
+ attr_accessor :backupName
2460
2460
  attr_accessor :email
2461
- attr_accessor :snapshot_number
2462
- attr_accessor :super_backup_name
2463
- attr_accessor :backup_type
2461
+ attr_accessor :snapshotNumber
2462
+ attr_accessor :superBackupName
2463
+ attr_accessor :backupType
2464
2464
  attr_accessor :src
2465
2465
  attr_accessor :include
2466
2466
  attr_accessor :exclude
2467
- attr_accessor :exclude_hard
2467
+ attr_accessor :excludeHard
2468
2468
 
2469
- def initialize(backup_id = nil, backup_feature = nil, enable = nil, language = nil, backup_size = nil, ssh_port = nil, percent_used = nil, hostname = nil, backup_name = nil, email = nil, snapshot_number = nil, super_backup_name = nil, backup_type = nil, src = nil, include = nil, exclude = nil, exclude_hard = nil)
2470
- @backup_id = backup_id
2471
- @backup_feature = backup_feature
2469
+ def initialize(backupId = nil, backupFeature = nil, enable = nil, language = nil, backupSize = nil, sshPort = nil, percentUsed = nil, hostname = nil, backupName = nil, email = nil, snapshotNumber = nil, superBackupName = nil, backupType = nil, src = nil, include = nil, exclude = nil, excludeHard = nil)
2470
+ @backupId = backupId
2471
+ @backupFeature = backupFeature
2472
2472
  @enable = enable
2473
2473
  @language = language
2474
- @backup_size = backup_size
2475
- @ssh_port = ssh_port
2476
- @percent_used = percent_used
2474
+ @backupSize = backupSize
2475
+ @sshPort = sshPort
2476
+ @percentUsed = percentUsed
2477
2477
  @hostname = hostname
2478
- @backup_name = backup_name
2478
+ @backupName = backupName
2479
2479
  @email = email
2480
- @snapshot_number = snapshot_number
2481
- @super_backup_name = super_backup_name
2482
- @backup_type = backup_type
2480
+ @snapshotNumber = snapshotNumber
2481
+ @superBackupName = superBackupName
2482
+ @backupType = backupType
2483
2483
  @src = src
2484
2484
  @include = include
2485
2485
  @exclude = exclude
2486
- @exclude_hard = exclude_hard
2486
+ @excludeHard = excludeHard
2487
2487
  end
2488
2488
  end
2489
2489
 
@@ -2493,42 +2493,42 @@ class DedicatedBackupListReturn
2493
2493
  @@schema_ns = "http://soapi.ovh.com/manager"
2494
2494
  @@schema_element = [["backupId", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupId")]], ["backupFeature", ["SOAP::SOAPString", XSD::QName.new(nil, "backupFeature")]], ["enable", ["SOAP::SOAPInt", XSD::QName.new(nil, "enable")]], ["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["backupSize", ["SOAP::SOAPString", XSD::QName.new(nil, "backupSize")]], ["sshPort", ["SOAP::SOAPInt", XSD::QName.new(nil, "sshPort")]], ["percentUsed", ["SOAP::SOAPString", XSD::QName.new(nil, "percentUsed")]], ["hostname", ["SOAP::SOAPString", XSD::QName.new(nil, "hostname")]], ["backupName", ["SOAP::SOAPString", XSD::QName.new(nil, "backupName")]], ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]], ["snapshotNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "snapshotNumber")]], ["superBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "superBackupName")]], ["backupType", ["SOAP::SOAPString", XSD::QName.new(nil, "backupType")]], ["src", ["MyArrayOfStringType", XSD::QName.new(nil, "src")]], ["include", ["MyArrayOfStringType", XSD::QName.new(nil, "include")]], ["exclude", ["MyArrayOfStringType", XSD::QName.new(nil, "exclude")]], ["excludeHard", ["MyArrayOfStringType", XSD::QName.new(nil, "excludeHard")]]]
2495
2495
 
2496
- attr_accessor :backup_id
2497
- attr_accessor :backup_feature
2496
+ attr_accessor :backupId
2497
+ attr_accessor :backupFeature
2498
2498
  attr_accessor :enable
2499
2499
  attr_accessor :language
2500
- attr_accessor :backup_size
2501
- attr_accessor :ssh_port
2502
- attr_accessor :percent_used
2500
+ attr_accessor :backupSize
2501
+ attr_accessor :sshPort
2502
+ attr_accessor :percentUsed
2503
2503
  attr_accessor :hostname
2504
- attr_accessor :backup_name
2504
+ attr_accessor :backupName
2505
2505
  attr_accessor :email
2506
- attr_accessor :snapshot_number
2507
- attr_accessor :super_backup_name
2508
- attr_accessor :backup_type
2506
+ attr_accessor :snapshotNumber
2507
+ attr_accessor :superBackupName
2508
+ attr_accessor :backupType
2509
2509
  attr_accessor :src
2510
2510
  attr_accessor :include
2511
2511
  attr_accessor :exclude
2512
- attr_accessor :exclude_hard
2512
+ attr_accessor :excludeHard
2513
2513
 
2514
- def initialize(backup_id = nil, backup_feature = nil, enable = nil, language = nil, backup_size = nil, ssh_port = nil, percent_used = nil, hostname = nil, backup_name = nil, email = nil, snapshot_number = nil, super_backup_name = nil, backup_type = nil, src = nil, include = nil, exclude = nil, exclude_hard = nil)
2515
- @backup_id = backup_id
2516
- @backup_feature = backup_feature
2514
+ def initialize(backupId = nil, backupFeature = nil, enable = nil, language = nil, backupSize = nil, sshPort = nil, percentUsed = nil, hostname = nil, backupName = nil, email = nil, snapshotNumber = nil, superBackupName = nil, backupType = nil, src = nil, include = nil, exclude = nil, excludeHard = nil)
2515
+ @backupId = backupId
2516
+ @backupFeature = backupFeature
2517
2517
  @enable = enable
2518
2518
  @language = language
2519
- @backup_size = backup_size
2520
- @ssh_port = ssh_port
2521
- @percent_used = percent_used
2519
+ @backupSize = backupSize
2520
+ @sshPort = sshPort
2521
+ @percentUsed = percentUsed
2522
2522
  @hostname = hostname
2523
- @backup_name = backup_name
2523
+ @backupName = backupName
2524
2524
  @email = email
2525
- @snapshot_number = snapshot_number
2526
- @super_backup_name = super_backup_name
2527
- @backup_type = backup_type
2525
+ @snapshotNumber = snapshotNumber
2526
+ @superBackupName = superBackupName
2527
+ @backupType = backupType
2528
2528
  @src = src
2529
2529
  @include = include
2530
2530
  @exclude = exclude
2531
- @exclude_hard = exclude_hard
2531
+ @excludeHard = excludeHard
2532
2532
  end
2533
2533
  end
2534
2534
 
@@ -2539,17 +2539,17 @@ class DedicatedBackupDateStruct
2539
2539
  @@schema_element = [["hour", ["SOAP::SOAPString", XSD::QName.new(nil, "hour")]], ["superBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "superBackupName")]], ["day", ["SOAP::SOAPString", XSD::QName.new(nil, "day")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["backupCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupCount")]]]
2540
2540
 
2541
2541
  attr_accessor :hour
2542
- attr_accessor :super_backup_name
2542
+ attr_accessor :superBackupName
2543
2543
  attr_accessor :day
2544
2544
  attr_accessor :id
2545
- attr_accessor :backup_count
2545
+ attr_accessor :backupCount
2546
2546
 
2547
- def initialize(hour = nil, super_backup_name = nil, day = nil, id = nil, backup_count = nil)
2547
+ def initialize(hour = nil, superBackupName = nil, day = nil, id = nil, backupCount = nil)
2548
2548
  @hour = hour
2549
- @super_backup_name = super_backup_name
2549
+ @superBackupName = superBackupName
2550
2550
  @day = day
2551
2551
  @id = id
2552
- @backup_count = backup_count
2552
+ @backupCount = backupCount
2553
2553
  end
2554
2554
  end
2555
2555
 
@@ -2560,15 +2560,15 @@ class DedicatedBackupHistoStruct
2560
2560
  @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["backupId", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupId")]], ["dateTime", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTime")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["error", ["SOAP::SOAPString", XSD::QName.new(nil, "error")]]]
2561
2561
 
2562
2562
  attr_accessor :id
2563
- attr_accessor :backup_id
2564
- attr_accessor :date_time
2563
+ attr_accessor :backupId
2564
+ attr_accessor :dateTime
2565
2565
  attr_accessor :status
2566
2566
  attr_accessor :error
2567
2567
 
2568
- def initialize(id = nil, backup_id = nil, date_time = nil, status = nil, error = nil)
2568
+ def initialize(id = nil, backupId = nil, dateTime = nil, status = nil, error = nil)
2569
2569
  @id = id
2570
- @backup_id = backup_id
2571
- @date_time = date_time
2570
+ @backupId = backupId
2571
+ @dateTime = dateTime
2572
2572
  @status = status
2573
2573
  @error = error
2574
2574
  end
@@ -2595,14 +2595,14 @@ class DedicatedOrderStruct
2595
2595
  @@schema_ns = "http://soapi.ovh.com/manager"
2596
2596
  @@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")]]]
2597
2597
 
2598
- attr_accessor :order_password
2599
- attr_accessor :order_id
2600
- attr_accessor :order_url
2598
+ attr_accessor :orderPassword
2599
+ attr_accessor :orderId
2600
+ attr_accessor :orderUrl
2601
2601
 
2602
- def initialize(order_password = nil, order_id = nil, order_url = nil)
2603
- @order_password = order_password
2604
- @order_id = order_id
2605
- @order_url = order_url
2602
+ def initialize(orderPassword = nil, orderId = nil, orderUrl = nil)
2603
+ @orderPassword = orderPassword
2604
+ @orderId = orderId
2605
+ @orderUrl = orderUrl
2606
2606
  end
2607
2607
  end
2608
2608
 
@@ -2613,23 +2613,23 @@ class DedicatedCapabilitiesStruct
2613
2613
  @@schema_element = [["hostname", ["SOAP::SOAPString", XSD::QName.new(nil, "hostname")]], ["originalClassicFailover", ["SOAP::SOAPInt", XSD::QName.new(nil, "originalClassicFailover")]], ["originalFailoverRipe", ["SOAP::SOAPInt", XSD::QName.new(nil, "originalFailoverRipe")]], ["originalLoadBalancingSlot", ["SOAP::SOAPInt", XSD::QName.new(nil, "originalLoadBalancingSlot")]], ["additionalClassicFailover", ["SOAP::SOAPInt", XSD::QName.new(nil, "additionalClassicFailover")]], ["additionalFailoverRipe", ["SOAP::SOAPInt", XSD::QName.new(nil, "additionalFailoverRipe")]], ["usedClassicFailover", ["SOAP::SOAPInt", XSD::QName.new(nil, "usedClassicFailover")]], ["usedFailoverRipe", ["SOAP::SOAPInt", XSD::QName.new(nil, "usedFailoverRipe")]]]
2614
2614
 
2615
2615
  attr_accessor :hostname
2616
- attr_accessor :original_classic_failover
2617
- attr_accessor :original_failover_ripe
2618
- attr_accessor :original_load_balancing_slot
2619
- attr_accessor :additional_classic_failover
2620
- attr_accessor :additional_failover_ripe
2621
- attr_accessor :used_classic_failover
2622
- attr_accessor :used_failover_ripe
2623
-
2624
- def initialize(hostname = nil, original_classic_failover = nil, original_failover_ripe = nil, original_load_balancing_slot = nil, additional_classic_failover = nil, additional_failover_ripe = nil, used_classic_failover = nil, used_failover_ripe = nil)
2616
+ attr_accessor :originalClassicFailover
2617
+ attr_accessor :originalFailoverRipe
2618
+ attr_accessor :originalLoadBalancingSlot
2619
+ attr_accessor :additionalClassicFailover
2620
+ attr_accessor :additionalFailoverRipe
2621
+ attr_accessor :usedClassicFailover
2622
+ attr_accessor :usedFailoverRipe
2623
+
2624
+ def initialize(hostname = nil, originalClassicFailover = nil, originalFailoverRipe = nil, originalLoadBalancingSlot = nil, additionalClassicFailover = nil, additionalFailoverRipe = nil, usedClassicFailover = nil, usedFailoverRipe = nil)
2625
2625
  @hostname = hostname
2626
- @original_classic_failover = original_classic_failover
2627
- @original_failover_ripe = original_failover_ripe
2628
- @original_load_balancing_slot = original_load_balancing_slot
2629
- @additional_classic_failover = additional_classic_failover
2630
- @additional_failover_ripe = additional_failover_ripe
2631
- @used_classic_failover = used_classic_failover
2632
- @used_failover_ripe = used_failover_ripe
2626
+ @originalClassicFailover = originalClassicFailover
2627
+ @originalFailoverRipe = originalFailoverRipe
2628
+ @originalLoadBalancingSlot = originalLoadBalancingSlot
2629
+ @additionalClassicFailover = additionalClassicFailover
2630
+ @additionalFailoverRipe = additionalFailoverRipe
2631
+ @usedClassicFailover = usedClassicFailover
2632
+ @usedFailoverRipe = usedFailoverRipe
2633
2633
  end
2634
2634
  end
2635
2635
 
@@ -2657,17 +2657,17 @@ class DedicatedIpLoadBalancingStruct
2657
2657
  @@schema_element = [["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["ipLoadBalancing", ["SOAP::SOAPString", XSD::QName.new(nil, "ipLoadBalancing")]], ["active", ["SOAP::SOAPInt", XSD::QName.new(nil, "active")]], ["inactive", ["SOAP::SOAPInt", XSD::QName.new(nil, "inactive")]], ["serverList", ["MyArrayOfDedicatedIpLoadBalancingServerStructType", XSD::QName.new(nil, "serverList")]]]
2658
2658
 
2659
2659
  attr_accessor :name
2660
- attr_accessor :ip_load_balancing
2660
+ attr_accessor :ipLoadBalancing
2661
2661
  attr_accessor :active
2662
2662
  attr_accessor :inactive
2663
- attr_accessor :server_list
2663
+ attr_accessor :serverList
2664
2664
 
2665
- def initialize(name = nil, ip_load_balancing = nil, active = nil, inactive = nil, server_list = nil)
2665
+ def initialize(name = nil, ipLoadBalancing = nil, active = nil, inactive = nil, serverList = nil)
2666
2666
  @name = name
2667
- @ip_load_balancing = ip_load_balancing
2667
+ @ipLoadBalancing = ipLoadBalancing
2668
2668
  @active = active
2669
2669
  @inactive = inactive
2670
- @server_list = server_list
2670
+ @serverList = serverList
2671
2671
  end
2672
2672
  end
2673
2673
 
@@ -2678,22 +2678,22 @@ class DedicatedRtmStatusReturn
2678
2678
  @@schema_element = [["cpu", ["RtmCpuStruct", XSD::QName.new(nil, "cpu")]], ["hardDrives", ["MyArrayOfRtmHddStructType", XSD::QName.new(nil, "hardDrives")]], ["systemInfo", ["RtmSystemStruct", XSD::QName.new(nil, "systemInfo")]], ["memory", ["RtmMemoryStruct", XSD::QName.new(nil, "memory")]], ["motherboard", ["RtmMotherboardStruct", XSD::QName.new(nil, "motherboard")]], ["lspci", ["MyArrayOfRtmLspciStructType", XSD::QName.new(nil, "lspci")]], ["portsUsed", ["RtmPortsStruct", XSD::QName.new(nil, "portsUsed")]], ["raid", ["RtmRaidStruct", XSD::QName.new(nil, "raid")]]]
2679
2679
 
2680
2680
  attr_accessor :cpu
2681
- attr_accessor :hard_drives
2682
- attr_accessor :system_info
2681
+ attr_accessor :hardDrives
2682
+ attr_accessor :systemInfo
2683
2683
  attr_accessor :memory
2684
2684
  attr_accessor :motherboard
2685
2685
  attr_accessor :lspci
2686
- attr_accessor :ports_used
2686
+ attr_accessor :portsUsed
2687
2687
  attr_accessor :raid
2688
2688
 
2689
- def initialize(cpu = nil, hard_drives = nil, system_info = nil, memory = nil, motherboard = nil, lspci = nil, ports_used = nil, raid = nil)
2689
+ def initialize(cpu = nil, hardDrives = nil, systemInfo = nil, memory = nil, motherboard = nil, lspci = nil, portsUsed = nil, raid = nil)
2690
2690
  @cpu = cpu
2691
- @hard_drives = hard_drives
2692
- @system_info = system_info
2691
+ @hardDrives = hardDrives
2692
+ @systemInfo = systemInfo
2693
2693
  @memory = memory
2694
2694
  @motherboard = motherboard
2695
2695
  @lspci = lspci
2696
- @ports_used = ports_used
2696
+ @portsUsed = portsUsed
2697
2697
  @raid = raid
2698
2698
  end
2699
2699
  end
@@ -2708,16 +2708,16 @@ class RtmCpuStruct
2708
2708
  attr_accessor :core
2709
2709
  attr_accessor :name
2710
2710
  attr_accessor :cache
2711
- attr_accessor :percent_load
2712
- attr_accessor :load_avg
2711
+ attr_accessor :percentLoad
2712
+ attr_accessor :loadAvg
2713
2713
 
2714
- def initialize(frequency = nil, core = nil, name = nil, cache = nil, percent_load = nil, load_avg = nil)
2714
+ def initialize(frequency = nil, core = nil, name = nil, cache = nil, percentLoad = nil, loadAvg = nil)
2715
2715
  @frequency = frequency
2716
2716
  @core = core
2717
2717
  @name = name
2718
2718
  @cache = cache
2719
- @percent_load = percent_load
2720
- @load_avg = load_avg
2719
+ @percentLoad = percentLoad
2720
+ @loadAvg = loadAvg
2721
2721
  end
2722
2722
  end
2723
2723
 
@@ -2768,17 +2768,17 @@ class RtmHddSmartStruct
2768
2768
  @@schema_element = [["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["multizoneErrorRate", ["SOAP::SOAPInt", XSD::QName.new(nil, "multizoneErrorRate")]], ["currentPendingSector", ["SOAP::SOAPInt", XSD::QName.new(nil, "currentPendingSector")]], ["udmaCrcError", ["SOAP::SOAPInt", XSD::QName.new(nil, "udmaCrcError")]], ["offlineUncorrectable", ["SOAP::SOAPInt", XSD::QName.new(nil, "offlineUncorrectable")]]]
2769
2769
 
2770
2770
  attr_accessor :status
2771
- attr_accessor :multizone_error_rate
2772
- attr_accessor :current_pending_sector
2773
- attr_accessor :udma_crc_error
2774
- attr_accessor :offline_uncorrectable
2771
+ attr_accessor :multizoneErrorRate
2772
+ attr_accessor :currentPendingSector
2773
+ attr_accessor :udmaCrcError
2774
+ attr_accessor :offlineUncorrectable
2775
2775
 
2776
- def initialize(status = nil, multizone_error_rate = nil, current_pending_sector = nil, udma_crc_error = nil, offline_uncorrectable = nil)
2776
+ def initialize(status = nil, multizoneErrorRate = nil, currentPendingSector = nil, udmaCrcError = nil, offlineUncorrectable = nil)
2777
2777
  @status = status
2778
- @multizone_error_rate = multizone_error_rate
2779
- @current_pending_sector = current_pending_sector
2780
- @udma_crc_error = udma_crc_error
2781
- @offline_uncorrectable = offline_uncorrectable
2778
+ @multizoneErrorRate = multizoneErrorRate
2779
+ @currentPendingSector = currentPendingSector
2780
+ @udmaCrcError = udmaCrcError
2781
+ @offlineUncorrectable = offlineUncorrectable
2782
2782
  end
2783
2783
  end
2784
2784
 
@@ -2789,15 +2789,15 @@ class RtmHddPartitionStruct
2789
2789
  @@schema_element = [["device", ["SOAP::SOAPString", XSD::QName.new(nil, "device")]], ["percentUsed", ["SOAP::SOAPInt", XSD::QName.new(nil, "percentUsed")]], ["percentInodes", ["SOAP::SOAPInt", XSD::QName.new(nil, "percentInodes")]], ["mountPoint", ["SOAP::SOAPString", XSD::QName.new(nil, "mountPoint")]]]
2790
2790
 
2791
2791
  attr_accessor :device
2792
- attr_accessor :percent_used
2793
- attr_accessor :percent_inodes
2794
- attr_accessor :mount_point
2792
+ attr_accessor :percentUsed
2793
+ attr_accessor :percentInodes
2794
+ attr_accessor :mountPoint
2795
2795
 
2796
- def initialize(device = nil, percent_used = nil, percent_inodes = nil, mount_point = nil)
2796
+ def initialize(device = nil, percentUsed = nil, percentInodes = nil, mountPoint = nil)
2797
2797
  @device = device
2798
- @percent_used = percent_used
2799
- @percent_inodes = percent_inodes
2800
- @mount_point = mount_point
2798
+ @percentUsed = percentUsed
2799
+ @percentInodes = percentInodes
2800
+ @mountPoint = mountPoint
2801
2801
  end
2802
2802
  end
2803
2803
 
@@ -2904,11 +2904,11 @@ class RtmMemoryModuleStruct
2904
2904
  @@schema_ns = "http://soapi.ovh.com/manager"
2905
2905
  @@schema_element = [["moduleName", ["SOAP::SOAPString", XSD::QName.new(nil, "moduleName")]], ["value", ["SOAP::SOAPString", XSD::QName.new(nil, "value")]]]
2906
2906
 
2907
- attr_accessor :module_name
2907
+ attr_accessor :moduleName
2908
2908
  attr_accessor :value
2909
2909
 
2910
- def initialize(module_name = nil, value = nil)
2911
- @module_name = module_name
2910
+ def initialize(moduleName = nil, value = nil)
2911
+ @moduleName = moduleName
2912
2912
  @value = value
2913
2913
  end
2914
2914
  end
@@ -2920,11 +2920,11 @@ class RtmMotherboardStruct
2920
2920
  @@schema_element = [["manufacture", ["SOAP::SOAPString", XSD::QName.new(nil, "manufacture")]], ["modelName", ["SOAP::SOAPString", XSD::QName.new(nil, "modelName")]]]
2921
2921
 
2922
2922
  attr_accessor :manufacture
2923
- attr_accessor :model_name
2923
+ attr_accessor :modelName
2924
2924
 
2925
- def initialize(manufacture = nil, model_name = nil)
2925
+ def initialize(manufacture = nil, modelName = nil)
2926
2926
  @manufacture = manufacture
2927
- @model_name = model_name
2927
+ @modelName = modelName
2928
2928
  end
2929
2929
  end
2930
2930
 
@@ -3030,7 +3030,7 @@ class RtmRaidPartitionVolumeStruct
3030
3030
  @@schema_ns = "http://soapi.ovh.com/manager"
3031
3031
  @@schema_element = [["volumeName", ["SOAP::SOAPString", XSD::QName.new(nil, "volumeName")]], ["flags", ["SOAP::SOAPString", XSD::QName.new(nil, "flags")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]], ["capacity", ["SOAP::SOAPString", XSD::QName.new(nil, "capacity")]], ["phys", ["SOAP::SOAPInt", XSD::QName.new(nil, "phys")]], ["members", ["MyArrayOfRtmRaidPartitionVolumeMemberStructType", XSD::QName.new(nil, "members")]]]
3032
3032
 
3033
- attr_accessor :volume_name
3033
+ attr_accessor :volumeName
3034
3034
  attr_accessor :flags
3035
3035
  attr_accessor :status
3036
3036
  attr_accessor :type
@@ -3038,8 +3038,8 @@ class RtmRaidPartitionVolumeStruct
3038
3038
  attr_accessor :phys
3039
3039
  attr_accessor :members
3040
3040
 
3041
- def initialize(volume_name = nil, flags = nil, status = nil, type = nil, capacity = nil, phys = nil, members = nil)
3042
- @volume_name = volume_name
3041
+ def initialize(volumeName = nil, flags = nil, status = nil, type = nil, capacity = nil, phys = nil, members = nil)
3042
+ @volumeName = volumeName
3043
3043
  @flags = flags
3044
3044
  @status = status
3045
3045
  @type = type
@@ -3055,15 +3055,15 @@ class RtmRaidPartitionVolumeMemberStruct
3055
3055
  @@schema_ns = "http://soapi.ovh.com/manager"
3056
3056
  @@schema_element = [["memberName", ["SOAP::SOAPString", XSD::QName.new(nil, "memberName")]], ["modelName", ["SOAP::SOAPString", XSD::QName.new(nil, "modelName")]], ["flags", ["SOAP::SOAPString", XSD::QName.new(nil, "flags")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["capacity", ["SOAP::SOAPString", XSD::QName.new(nil, "capacity")]]]
3057
3057
 
3058
- attr_accessor :member_name
3059
- attr_accessor :model_name
3058
+ attr_accessor :memberName
3059
+ attr_accessor :modelName
3060
3060
  attr_accessor :flags
3061
3061
  attr_accessor :status
3062
3062
  attr_accessor :capacity
3063
3063
 
3064
- def initialize(member_name = nil, model_name = nil, flags = nil, status = nil, capacity = nil)
3065
- @member_name = member_name
3066
- @model_name = model_name
3064
+ def initialize(memberName = nil, modelName = nil, flags = nil, status = nil, capacity = nil)
3065
+ @memberName = memberName
3066
+ @modelName = modelName
3067
3067
  @flags = flags
3068
3068
  @status = status
3069
3069
  @capacity = capacity
@@ -3120,13 +3120,13 @@ class DedicatedRipeGetIpStruct
3120
3120
  @@schema_element = [["exclusion", ["SOAP::SOAPString", XSD::QName.new(nil, "exclusion")]], ["routedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "routedTo")]], ["ip", ["SOAP::SOAPString", XSD::QName.new(nil, "ip")]], ["netname", ["SOAP::SOAPString", XSD::QName.new(nil, "netname")]]]
3121
3121
 
3122
3122
  attr_accessor :exclusion
3123
- attr_accessor :routed_to
3123
+ attr_accessor :routedTo
3124
3124
  attr_accessor :ip
3125
3125
  attr_accessor :netname
3126
3126
 
3127
- def initialize(exclusion = nil, routed_to = nil, ip = nil, netname = nil)
3127
+ def initialize(exclusion = nil, routedTo = nil, ip = nil, netname = nil)
3128
3128
  @exclusion = exclusion
3129
- @routed_to = routed_to
3129
+ @routedTo = routedTo
3130
3130
  @ip = ip
3131
3131
  @netname = netname
3132
3132
  end
@@ -3153,16 +3153,16 @@ class DedicatedIpVirtualMacUsedStruct
3153
3153
  @@schema_ns = "http://soapi.ovh.com/manager"
3154
3154
  @@schema_element = [["virtualMachineName", ["SOAP::SOAPString", XSD::QName.new(nil, "virtualMachineName")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["ipAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "ipAddress")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]], ["mac", ["SOAP::SOAPString", XSD::QName.new(nil, "mac")]]]
3155
3155
 
3156
- attr_accessor :virtual_machine_name
3156
+ attr_accessor :virtualMachineName
3157
3157
  attr_accessor :status
3158
- attr_accessor :ip_address
3158
+ attr_accessor :ipAddress
3159
3159
  attr_accessor :type
3160
3160
  attr_accessor :mac
3161
3161
 
3162
- def initialize(virtual_machine_name = nil, status = nil, ip_address = nil, type = nil, mac = nil)
3163
- @virtual_machine_name = virtual_machine_name
3162
+ def initialize(virtualMachineName = nil, status = nil, ipAddress = nil, type = nil, mac = nil)
3163
+ @virtualMachineName = virtualMachineName
3164
3164
  @status = status
3165
- @ip_address = ip_address
3165
+ @ipAddress = ipAddress
3166
3166
  @type = type
3167
3167
  @mac = mac
3168
3168
  end
@@ -3174,13 +3174,13 @@ class DedicatedBandwidthManagementReturn
3174
3174
  @@schema_ns = "http://soapi.ovh.com/manager"
3175
3175
  @@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")]]]
3176
3176
 
3177
- attr_accessor :server_name
3177
+ attr_accessor :serverName
3178
3178
  attr_accessor :id
3179
3179
  attr_accessor :status
3180
3180
  attr_accessor :date
3181
3181
 
3182
- def initialize(server_name = nil, id = nil, status = nil, date = nil)
3183
- @server_name = server_name
3182
+ def initialize(serverName = nil, id = nil, status = nil, date = nil)
3183
+ @serverName = serverName
3184
3184
  @id = id
3185
3185
  @status = status
3186
3186
  @date = date
@@ -3193,20 +3193,20 @@ class DedicatedServerPartioningDetailStruct
3193
3193
  @@schema_ns = "http://soapi.ovh.com/manager"
3194
3194
  @@schema_element = [["partSize", ["SOAP::SOAPString", XSD::QName.new(nil, "partSize")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["raidType", ["SOAP::SOAPInt", XSD::QName.new(nil, "raidType")]], ["mountPoint", ["SOAP::SOAPString", XSD::QName.new(nil, "mountPoint")]], ["partType", ["SOAP::SOAPString", XSD::QName.new(nil, "partType")]], ["fileSystem", ["SOAP::SOAPString", XSD::QName.new(nil, "fileSystem")]]]
3195
3195
 
3196
- attr_accessor :part_size
3196
+ attr_accessor :partSize
3197
3197
  attr_accessor :id
3198
- attr_accessor :raid_type
3199
- attr_accessor :mount_point
3200
- attr_accessor :part_type
3201
- attr_accessor :file_system
3198
+ attr_accessor :raidType
3199
+ attr_accessor :mountPoint
3200
+ attr_accessor :partType
3201
+ attr_accessor :fileSystem
3202
3202
 
3203
- def initialize(part_size = nil, id = nil, raid_type = nil, mount_point = nil, part_type = nil, file_system = nil)
3204
- @part_size = part_size
3203
+ def initialize(partSize = nil, id = nil, raidType = nil, mountPoint = nil, partType = nil, fileSystem = nil)
3204
+ @partSize = partSize
3205
3205
  @id = id
3206
- @raid_type = raid_type
3207
- @mount_point = mount_point
3208
- @part_type = part_type
3209
- @file_system = file_system
3206
+ @raidType = raidType
3207
+ @mountPoint = mountPoint
3208
+ @partType = partType
3209
+ @fileSystem = fileSystem
3210
3210
  end
3211
3211
  end
3212
3212
 
@@ -3236,21 +3236,21 @@ class DedicatedInstallConfigurationParametersStruct
3236
3236
  @@schema_element = [["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["bitFormat", ["SOAP::SOAPString", XSD::QName.new(nil, "bitFormat")]], ["softRaidDevices", ["SOAP::SOAPInt", XSD::QName.new(nil, "softRaidDevices")]], ["serverName", ["SOAP::SOAPString", XSD::QName.new(nil, "serverName")]], ["softRaid", ["SOAP::SOAPString", XSD::QName.new(nil, "softRaid")]], ["distribution", ["SOAP::SOAPString", XSD::QName.new(nil, "distribution")]], ["resinstallTodoId", ["SOAP::SOAPInt", XSD::QName.new(nil, "resinstallTodoId")]]]
3237
3237
 
3238
3238
  attr_accessor :language
3239
- attr_accessor :bit_format
3240
- attr_accessor :soft_raid_devices
3241
- attr_accessor :server_name
3242
- attr_accessor :soft_raid
3239
+ attr_accessor :bitFormat
3240
+ attr_accessor :softRaidDevices
3241
+ attr_accessor :serverName
3242
+ attr_accessor :softRaid
3243
3243
  attr_accessor :distribution
3244
- attr_accessor :resinstall_todo_id
3244
+ attr_accessor :resinstallTodoId
3245
3245
 
3246
- def initialize(language = nil, bit_format = nil, soft_raid_devices = nil, server_name = nil, soft_raid = nil, distribution = nil, resinstall_todo_id = nil)
3246
+ def initialize(language = nil, bitFormat = nil, softRaidDevices = nil, serverName = nil, softRaid = nil, distribution = nil, resinstallTodoId = nil)
3247
3247
  @language = language
3248
- @bit_format = bit_format
3249
- @soft_raid_devices = soft_raid_devices
3250
- @server_name = server_name
3251
- @soft_raid = soft_raid
3248
+ @bitFormat = bitFormat
3249
+ @softRaidDevices = softRaidDevices
3250
+ @serverName = serverName
3251
+ @softRaid = softRaid
3252
3252
  @distribution = distribution
3253
- @resinstall_todo_id = resinstall_todo_id
3253
+ @resinstallTodoId = resinstallTodoId
3254
3254
  end
3255
3255
  end
3256
3256
 
@@ -3260,30 +3260,30 @@ class DedicatedInstallConfigurationStruct
3260
3260
  @@schema_ns = "http://soapi.ovh.com/manager"
3261
3261
  @@schema_element = [["pendingDate", ["SOAP::SOAPString", XSD::QName.new(nil, "pendingDate")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["stageId", ["SOAP::SOAPInt", XSD::QName.new(nil, "stageId")]], ["serverName", ["SOAP::SOAPString", XSD::QName.new(nil, "serverName")]], ["parameters", ["DedicatedInstallConfigurationParametersStruct", XSD::QName.new(nil, "parameters")]], ["todoDate", ["SOAP::SOAPString", XSD::QName.new(nil, "todoDate")]], ["doingDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doingDate")]], ["error", ["SOAP::SOAPString", XSD::QName.new(nil, "error")]], ["action", ["SOAP::SOAPString", XSD::QName.new(nil, "action")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["doneDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doneDate")]]]
3262
3262
 
3263
- attr_accessor :pending_date
3263
+ attr_accessor :pendingDate
3264
3264
  attr_accessor :status
3265
- attr_accessor :stage_id
3266
- attr_accessor :server_name
3265
+ attr_accessor :stageId
3266
+ attr_accessor :serverName
3267
3267
  attr_accessor :parameters
3268
- attr_accessor :todo_date
3269
- attr_accessor :doing_date
3268
+ attr_accessor :todoDate
3269
+ attr_accessor :doingDate
3270
3270
  attr_accessor :error
3271
3271
  attr_accessor :action
3272
3272
  attr_accessor :id
3273
- attr_accessor :done_date
3273
+ attr_accessor :doneDate
3274
3274
 
3275
- def initialize(pending_date = nil, status = nil, stage_id = nil, server_name = nil, parameters = nil, todo_date = nil, doing_date = nil, error = nil, action = nil, id = nil, done_date = nil)
3276
- @pending_date = pending_date
3275
+ def initialize(pendingDate = nil, status = nil, stageId = nil, serverName = nil, parameters = nil, todoDate = nil, doingDate = nil, error = nil, action = nil, id = nil, doneDate = nil)
3276
+ @pendingDate = pendingDate
3277
3277
  @status = status
3278
- @stage_id = stage_id
3279
- @server_name = server_name
3278
+ @stageId = stageId
3279
+ @serverName = serverName
3280
3280
  @parameters = parameters
3281
- @todo_date = todo_date
3282
- @doing_date = doing_date
3281
+ @todoDate = todoDate
3282
+ @doingDate = doingDate
3283
3283
  @error = error
3284
3284
  @action = action
3285
3285
  @id = id
3286
- @done_date = done_date
3286
+ @doneDate = doneDate
3287
3287
  end
3288
3288
  end
3289
3289
 
@@ -3324,14 +3324,14 @@ class DedicatedAllowedDistributionDetailsStruct
3324
3324
  @@schema_element = [["language", ["MyArrayOfDedicatedAllowedDistributionLanguageStructType", XSD::QName.new(nil, "language")]], ["bitFormat", ["MyArrayOfDedicatedAllowedDistributionBitFormatStructType", XSD::QName.new(nil, "bitFormat")]], ["longName", ["SOAP::SOAPString", XSD::QName.new(nil, "longName")]], ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]]
3325
3325
 
3326
3326
  attr_accessor :language
3327
- attr_accessor :bit_format
3328
- attr_accessor :long_name
3327
+ attr_accessor :bitFormat
3328
+ attr_accessor :longName
3329
3329
  attr_accessor :name
3330
3330
 
3331
- def initialize(language = nil, bit_format = nil, long_name = nil, name = nil)
3331
+ def initialize(language = nil, bitFormat = nil, longName = nil, name = nil)
3332
3332
  @language = language
3333
- @bit_format = bit_format
3334
- @long_name = long_name
3333
+ @bitFormat = bitFormat
3334
+ @longName = longName
3335
3335
  @name = name
3336
3336
  end
3337
3337
  end
@@ -3342,13 +3342,13 @@ class DedicatedAllowedDistributionMoreStruct
3342
3342
  @@schema_ns = "http://soapi.ovh.com/manager"
3343
3343
  @@schema_element = [["basicDistributions", ["MyArrayOfDedicatedAllowedDistributionDetailsStructType", XSD::QName.new(nil, "basicDistributions")]], ["readyToUse", ["MyArrayOfDedicatedAllowedDistributionDetailsStructType", XSD::QName.new(nil, "readyToUse")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]]
3344
3344
 
3345
- attr_accessor :basic_distributions
3346
- attr_accessor :ready_to_use
3345
+ attr_accessor :basicDistributions
3346
+ attr_accessor :readyToUse
3347
3347
  attr_accessor :type
3348
3348
 
3349
- def initialize(basic_distributions = nil, ready_to_use = nil, type = nil)
3350
- @basic_distributions = basic_distributions
3351
- @ready_to_use = ready_to_use
3349
+ def initialize(basicDistributions = nil, readyToUse = nil, type = nil)
3350
+ @basicDistributions = basicDistributions
3351
+ @readyToUse = readyToUse
3352
3352
  @type = type
3353
3353
  end
3354
3354
  end
@@ -3659,25 +3659,25 @@ class TicketStruct
3659
3659
  @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["creationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "creationDate")]], ["requestStatus", ["SOAP::SOAPString", XSD::QName.new(nil, "requestStatus")]], ["subject", ["SOAP::SOAPString", XSD::QName.new(nil, "subject")]], ["nic", ["SOAP::SOAPString", XSD::QName.new(nil, "nic")]], ["level", ["SOAP::SOAPString", XSD::QName.new(nil, "level")]], ["domain", ["SOAP::SOAPString", XSD::QName.new(nil, "domain")]], ["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["componentType", ["SOAP::SOAPString", XSD::QName.new(nil, "componentType")]]]
3660
3660
 
3661
3661
  attr_accessor :id
3662
- attr_accessor :creation_date
3663
- attr_accessor :request_status
3662
+ attr_accessor :creationDate
3663
+ attr_accessor :requestStatus
3664
3664
  attr_accessor :subject
3665
3665
  attr_accessor :nic
3666
3666
  attr_accessor :level
3667
3667
  attr_accessor :domain
3668
- attr_accessor :order_id
3669
- attr_accessor :component_type
3668
+ attr_accessor :orderId
3669
+ attr_accessor :componentType
3670
3670
 
3671
- def initialize(id = nil, creation_date = nil, request_status = nil, subject = nil, nic = nil, level = nil, domain = nil, order_id = nil, component_type = nil)
3671
+ def initialize(id = nil, creationDate = nil, requestStatus = nil, subject = nil, nic = nil, level = nil, domain = nil, orderId = nil, componentType = nil)
3672
3672
  @id = id
3673
- @creation_date = creation_date
3674
- @request_status = request_status
3673
+ @creationDate = creationDate
3674
+ @requestStatus = requestStatus
3675
3675
  @subject = subject
3676
3676
  @nic = nic
3677
3677
  @level = level
3678
3678
  @domain = domain
3679
- @order_id = order_id
3680
- @component_type = component_type
3679
+ @orderId = orderId
3680
+ @componentType = componentType
3681
3681
  end
3682
3682
  end
3683
3683
 
@@ -3687,8 +3687,8 @@ class FullTicketReturn
3687
3687
  @@schema_ns = "http://soapi.ovh.com/manager"
3688
3688
  @@schema_element = [["ticketId", ["SOAP::SOAPInt", XSD::QName.new(nil, "ticketId")]], ["requestStatus", ["SOAP::SOAPString", XSD::QName.new(nil, "requestStatus")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["subject", ["SOAP::SOAPString", XSD::QName.new(nil, "subject")]], ["nic", ["SOAP::SOAPString", XSD::QName.new(nil, "nic")]], ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")]], ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]], ["level", ["SOAP::SOAPString", XSD::QName.new(nil, "level")]], ["domain", ["SOAP::SOAPString", XSD::QName.new(nil, "domain")]], ["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["componentType", ["SOAP::SOAPString", XSD::QName.new(nil, "componentType")]], ["messages", ["MyArrayOfMessageDetailStructType", XSD::QName.new(nil, "messages")]]]
3689
3689
 
3690
- attr_accessor :ticket_id
3691
- attr_accessor :request_status
3690
+ attr_accessor :ticketId
3691
+ attr_accessor :requestStatus
3692
3692
  attr_accessor :status
3693
3693
  attr_accessor :subject
3694
3694
  attr_accessor :nic
@@ -3696,13 +3696,13 @@ class FullTicketReturn
3696
3696
  attr_accessor :email
3697
3697
  attr_accessor :level
3698
3698
  attr_accessor :domain
3699
- attr_accessor :order_id
3700
- attr_accessor :component_type
3699
+ attr_accessor :orderId
3700
+ attr_accessor :componentType
3701
3701
  attr_accessor :messages
3702
3702
 
3703
- def initialize(ticket_id = nil, request_status = nil, status = nil, subject = nil, nic = nil, phone = nil, email = nil, level = nil, domain = nil, order_id = nil, component_type = nil, messages = nil)
3704
- @ticket_id = ticket_id
3705
- @request_status = request_status
3703
+ def initialize(ticketId = nil, requestStatus = nil, status = nil, subject = nil, nic = nil, phone = nil, email = nil, level = nil, domain = nil, orderId = nil, componentType = nil, messages = nil)
3704
+ @ticketId = ticketId
3705
+ @requestStatus = requestStatus
3706
3706
  @status = status
3707
3707
  @subject = subject
3708
3708
  @nic = nic
@@ -3710,8 +3710,8 @@ class FullTicketReturn
3710
3710
  @email = email
3711
3711
  @level = level
3712
3712
  @domain = domain
3713
- @order_id = order_id
3714
- @component_type = component_type
3713
+ @orderId = orderId
3714
+ @componentType = componentType
3715
3715
  @messages = messages
3716
3716
  end
3717
3717
  end
@@ -3745,11 +3745,11 @@ class TicketContactStruct
3745
3745
  @@schema_ns = "http://soapi.ovh.com/manager"
3746
3746
  @@schema_element = [["componentType", ["SOAP::SOAPString", XSD::QName.new(nil, "componentType")]], ["domains", ["MyArrayOfTicketContactDomainStructType", XSD::QName.new(nil, "domains")]]]
3747
3747
 
3748
- attr_accessor :component_type
3748
+ attr_accessor :componentType
3749
3749
  attr_accessor :domains
3750
3750
 
3751
- def initialize(component_type = nil, domains = nil)
3752
- @component_type = component_type
3751
+ def initialize(componentType = nil, domains = nil)
3752
+ @componentType = componentType
3753
3753
  @domains = domains
3754
3754
  end
3755
3755
  end
@@ -3855,12 +3855,12 @@ class SqlpriveMysqlDatabasePrivilegeStruct
3855
3855
  @@schema_ns = "http://soapi.ovh.com/manager"
3856
3856
  @@schema_element = [["databaseName", ["SOAP::SOAPString", XSD::QName.new(nil, "databaseName")]], ["databaseUsers", ["MyArrayOfSqlpriveMysqlDatabaseUserPrivilegeStructType", XSD::QName.new(nil, "databaseUsers")]]]
3857
3857
 
3858
- attr_accessor :database_name
3859
- attr_accessor :database_users
3858
+ attr_accessor :databaseName
3859
+ attr_accessor :databaseUsers
3860
3860
 
3861
- def initialize(database_name = nil, database_users = nil)
3862
- @database_name = database_name
3863
- @database_users = database_users
3861
+ def initialize(databaseName = nil, databaseUsers = nil)
3862
+ @databaseName = databaseName
3863
+ @databaseUsers = databaseUsers
3864
3864
  end
3865
3865
  end
3866
3866
 
@@ -3870,12 +3870,12 @@ class SqlpriveMysqlDatabaseUserPrivilegeStruct
3870
3870
  @@schema_ns = "http://soapi.ovh.com/manager"
3871
3871
  @@schema_element = [["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")]], ["userPriv", ["SOAP::SOAPString", XSD::QName.new(nil, "userPriv")]]]
3872
3872
 
3873
- attr_accessor :user_name
3874
- attr_accessor :user_priv
3873
+ attr_accessor :userName
3874
+ attr_accessor :userPriv
3875
3875
 
3876
- def initialize(user_name = nil, user_priv = nil)
3877
- @user_name = user_name
3878
- @user_priv = user_priv
3876
+ def initialize(userName = nil, userPriv = nil)
3877
+ @userName = userName
3878
+ @userPriv = userPriv
3879
3879
  end
3880
3880
  end
3881
3881
 
@@ -3904,14 +3904,14 @@ class SqlpriveAlertInfotReturn
3904
3904
 
3905
3905
  attr_accessor :email
3906
3906
  attr_accessor :alert
3907
- attr_accessor :sms_number
3908
- attr_accessor :sms_account
3907
+ attr_accessor :smsNumber
3908
+ attr_accessor :smsAccount
3909
3909
 
3910
- def initialize(email = nil, alert = nil, sms_number = nil, sms_account = nil)
3910
+ def initialize(email = nil, alert = nil, smsNumber = nil, smsAccount = nil)
3911
3911
  @email = email
3912
3912
  @alert = alert
3913
- @sms_number = sms_number
3914
- @sms_account = sms_account
3913
+ @smsNumber = smsNumber
3914
+ @smsAccount = smsAccount
3915
3915
  end
3916
3916
  end
3917
3917
 
@@ -3926,16 +3926,16 @@ class SqlpriveCronStruct
3926
3926
  attr_accessor :days
3927
3927
  attr_accessor :hours
3928
3928
  attr_accessor :operation
3929
- attr_accessor :end_date
3929
+ attr_accessor :endDate
3930
3930
  attr_accessor :comment
3931
3931
 
3932
- def initialize(id = nil, active = nil, days = nil, hours = nil, operation = nil, end_date = nil, comment = nil)
3932
+ def initialize(id = nil, active = nil, days = nil, hours = nil, operation = nil, endDate = nil, comment = nil)
3933
3933
  @id = id
3934
3934
  @active = active
3935
3935
  @days = days
3936
3936
  @hours = hours
3937
3937
  @operation = operation
3938
- @end_date = end_date
3938
+ @endDate = endDate
3939
3939
  @comment = comment
3940
3940
  end
3941
3941
  end
@@ -3990,16 +3990,16 @@ class ResellerAccountMovementStruct
3990
3990
 
3991
3991
  attr_accessor :amount
3992
3992
  attr_accessor :balance
3993
- attr_accessor :previous_balance
3993
+ attr_accessor :previousBalance
3994
3994
  attr_accessor :date
3995
3995
  attr_accessor :description
3996
3996
  attr_accessor :operation
3997
3997
  attr_accessor :order
3998
3998
 
3999
- def initialize(amount = nil, balance = nil, previous_balance = nil, date = nil, description = nil, operation = nil, order = nil)
3999
+ def initialize(amount = nil, balance = nil, previousBalance = nil, date = nil, description = nil, operation = nil, order = nil)
4000
4000
  @amount = amount
4001
4001
  @balance = balance
4002
- @previous_balance = previous_balance
4002
+ @previousBalance = previousBalance
4003
4003
  @date = date
4004
4004
  @description = description
4005
4005
  @operation = operation
@@ -4035,23 +4035,23 @@ class ResellerAccountSummaryReturn
4035
4035
  attr_accessor :country
4036
4036
  attr_accessor :description
4037
4037
  attr_accessor :balance
4038
- attr_accessor :alert_threshold
4039
- attr_accessor :limit_threshold
4040
- attr_accessor :open_date
4038
+ attr_accessor :alertThreshold
4039
+ attr_accessor :limitThreshold
4040
+ attr_accessor :openDate
4041
4041
  attr_accessor :date
4042
- attr_accessor :close_date
4042
+ attr_accessor :closeDate
4043
4043
 
4044
- def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil, alert_threshold = nil, limit_threshold = nil, open_date = nil, date = nil, close_date = nil)
4044
+ def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil, alertThreshold = nil, limitThreshold = nil, openDate = nil, date = nil, closeDate = nil)
4045
4045
  @nic = nic
4046
4046
  @account = account
4047
4047
  @country = country
4048
4048
  @description = description
4049
4049
  @balance = balance
4050
- @alert_threshold = alert_threshold
4051
- @limit_threshold = limit_threshold
4052
- @open_date = open_date
4050
+ @alertThreshold = alertThreshold
4051
+ @limitThreshold = limitThreshold
4052
+ @openDate = openDate
4053
4053
  @date = date
4054
- @close_date = close_date
4054
+ @closeDate = closeDate
4055
4055
  end
4056
4056
  end
4057
4057
 
@@ -4070,20 +4070,20 @@ class InfrastructureIpStruct
4070
4070
 
4071
4071
  attr_accessor :country
4072
4072
  attr_accessor :netname
4073
- attr_accessor :routed_to
4073
+ attr_accessor :routedTo
4074
4074
  attr_accessor :status
4075
- attr_accessor :addresses_number
4076
- attr_accessor :network_ip
4077
- attr_accessor :ip_address_from_block
4075
+ attr_accessor :addressesNumber
4076
+ attr_accessor :networkIp
4077
+ attr_accessor :ipAddressFromBlock
4078
4078
 
4079
- def initialize(country = nil, netname = nil, routed_to = nil, status = nil, addresses_number = nil, network_ip = nil, ip_address_from_block = nil)
4079
+ def initialize(country = nil, netname = nil, routedTo = nil, status = nil, addressesNumber = nil, networkIp = nil, ipAddressFromBlock = nil)
4080
4080
  @country = country
4081
4081
  @netname = netname
4082
- @routed_to = routed_to
4082
+ @routedTo = routedTo
4083
4083
  @status = status
4084
- @addresses_number = addresses_number
4085
- @network_ip = network_ip
4086
- @ip_address_from_block = ip_address_from_block
4084
+ @addressesNumber = addressesNumber
4085
+ @networkIp = networkIp
4086
+ @ipAddressFromBlock = ipAddressFromBlock
4087
4087
  end
4088
4088
  end
4089
4089
 
@@ -4102,16 +4102,16 @@ class AccountMovementStruct
4102
4102
 
4103
4103
  attr_accessor :amount
4104
4104
  attr_accessor :balance
4105
- attr_accessor :previous_balance
4105
+ attr_accessor :previousBalance
4106
4106
  attr_accessor :date
4107
4107
  attr_accessor :description
4108
4108
  attr_accessor :operation
4109
4109
  attr_accessor :order
4110
4110
 
4111
- def initialize(amount = nil, balance = nil, previous_balance = nil, date = nil, description = nil, operation = nil, order = nil)
4111
+ def initialize(amount = nil, balance = nil, previousBalance = nil, date = nil, description = nil, operation = nil, order = nil)
4112
4112
  @amount = amount
4113
4113
  @balance = balance
4114
- @previous_balance = previous_balance
4114
+ @previousBalance = previousBalance
4115
4115
  @date = date
4116
4116
  @description = description
4117
4117
  @operation = operation
@@ -4147,23 +4147,23 @@ class AccountSummaryReturn
4147
4147
  attr_accessor :country
4148
4148
  attr_accessor :description
4149
4149
  attr_accessor :balance
4150
- attr_accessor :alert_threshold
4151
- attr_accessor :limit_threshold
4152
- attr_accessor :open_date
4150
+ attr_accessor :alertThreshold
4151
+ attr_accessor :limitThreshold
4152
+ attr_accessor :openDate
4153
4153
  attr_accessor :date
4154
- attr_accessor :close_date
4154
+ attr_accessor :closeDate
4155
4155
 
4156
- def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil, alert_threshold = nil, limit_threshold = nil, open_date = nil, date = nil, close_date = nil)
4156
+ def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil, alertThreshold = nil, limitThreshold = nil, openDate = nil, date = nil, closeDate = nil)
4157
4157
  @nic = nic
4158
4158
  @account = account
4159
4159
  @country = country
4160
4160
  @description = description
4161
4161
  @balance = balance
4162
- @alert_threshold = alert_threshold
4163
- @limit_threshold = limit_threshold
4164
- @open_date = open_date
4162
+ @alertThreshold = alertThreshold
4163
+ @limitThreshold = limitThreshold
4164
+ @openDate = openDate
4165
4165
  @date = date
4166
- @close_date = close_date
4166
+ @closeDate = closeDate
4167
4167
  end
4168
4168
  end
4169
4169
 
@@ -4183,19 +4183,19 @@ class HostingChangeMainDomainReturn
4183
4183
  attr_accessor :id
4184
4184
  attr_accessor :country
4185
4185
  attr_accessor :password
4186
- attr_accessor :total_price_with_vat
4187
- attr_accessor :total_price
4186
+ attr_accessor :totalPriceWithVat
4187
+ attr_accessor :totalPrice
4188
4188
  attr_accessor :url
4189
- attr_accessor :vat_rate
4189
+ attr_accessor :vatRate
4190
4190
 
4191
- def initialize(id = nil, country = nil, password = nil, total_price_with_vat = nil, total_price = nil, url = nil, vat_rate = nil)
4191
+ def initialize(id = nil, country = nil, password = nil, totalPriceWithVat = nil, totalPrice = nil, url = nil, vatRate = nil)
4192
4192
  @id = id
4193
4193
  @country = country
4194
4194
  @password = password
4195
- @total_price_with_vat = total_price_with_vat
4196
- @total_price = total_price
4195
+ @totalPriceWithVat = totalPriceWithVat
4196
+ @totalPrice = totalPrice
4197
4197
  @url = url
4198
- @vat_rate = vat_rate
4198
+ @vatRate = vatRate
4199
4199
  end
4200
4200
  end
4201
4201
 
@@ -4209,15 +4209,15 @@ class HostingGetCapabilitiesReturn
4209
4209
  attr_accessor :webspace
4210
4210
  attr_accessor :traffic
4211
4211
  attr_accessor :databases
4212
- attr_accessor :database_space
4212
+ attr_accessor :databaseSpace
4213
4213
  attr_accessor :multidomains
4214
4214
  attr_accessor :subdomains
4215
4215
  attr_accessor :streaming
4216
4216
  attr_accessor :multiftp
4217
4217
  attr_accessor :anonymousftp
4218
- attr_accessor :free_dom_per_year
4219
- attr_accessor :free_dom_max
4220
- attr_accessor :shared_ssl
4218
+ attr_accessor :freeDomPerYear
4219
+ attr_accessor :freeDomMax
4220
+ attr_accessor :sharedSSL
4221
4221
  attr_accessor :ssh
4222
4222
  attr_accessor :geoloc
4223
4223
  attr_accessor :cgi
@@ -4226,20 +4226,20 @@ class HostingGetCapabilitiesReturn
4226
4226
  attr_accessor :vpn
4227
4227
  attr_accessor :jabber
4228
4228
 
4229
- def initialize(name = nil, webspace = nil, traffic = nil, databases = nil, database_space = nil, multidomains = nil, subdomains = nil, streaming = nil, multiftp = nil, anonymousftp = nil, free_dom_per_year = nil, free_dom_max = nil, shared_ssl = nil, ssh = nil, geoloc = nil, cgi = nil, crontab = nil, sip = nil, vpn = nil, jabber = nil)
4229
+ def initialize(name = nil, webspace = nil, traffic = nil, databases = nil, databaseSpace = nil, multidomains = nil, subdomains = nil, streaming = nil, multiftp = nil, anonymousftp = nil, freeDomPerYear = nil, freeDomMax = nil, sharedSSL = nil, ssh = nil, geoloc = nil, cgi = nil, crontab = nil, sip = nil, vpn = nil, jabber = nil)
4230
4230
  @name = name
4231
4231
  @webspace = webspace
4232
4232
  @traffic = traffic
4233
4233
  @databases = databases
4234
- @database_space = database_space
4234
+ @databaseSpace = databaseSpace
4235
4235
  @multidomains = multidomains
4236
4236
  @subdomains = subdomains
4237
4237
  @streaming = streaming
4238
4238
  @multiftp = multiftp
4239
4239
  @anonymousftp = anonymousftp
4240
- @free_dom_per_year = free_dom_per_year
4241
- @free_dom_max = free_dom_max
4242
- @shared_ssl = shared_ssl
4240
+ @freeDomPerYear = freeDomPerYear
4241
+ @freeDomMax = freeDomMax
4242
+ @sharedSSL = sharedSSL
4243
4243
  @ssh = ssh
4244
4244
  @geoloc = geoloc
4245
4245
  @cgi = cgi
@@ -4273,7 +4273,7 @@ class HostingSummaryReturn
4273
4273
 
4274
4274
  attr_accessor :country
4275
4275
  attr_accessor :webspace
4276
- attr_accessor :max_webspace
4276
+ attr_accessor :maxWebspace
4277
4277
  attr_accessor :subdomains
4278
4278
  attr_accessor :multidomains
4279
4279
  attr_accessor :multiftps
@@ -4282,13 +4282,13 @@ class HostingSummaryReturn
4282
4282
  attr_accessor :freedom_remaining
4283
4283
  attr_accessor :freedom_assigned
4284
4284
  attr_accessor :freedom_total
4285
- attr_accessor :high_capacity
4286
- attr_accessor :high_security
4285
+ attr_accessor :highCapacity
4286
+ attr_accessor :highSecurity
4287
4287
 
4288
- def initialize(country = nil, webspace = nil, max_webspace = nil, subdomains = nil, multidomains = nil, multiftps = nil, anonymousftp = nil, databases = nil, freedom_remaining = nil, freedom_assigned = nil, freedom_total = nil, high_capacity = nil, high_security = nil)
4288
+ def initialize(country = nil, webspace = nil, maxWebspace = nil, subdomains = nil, multidomains = nil, multiftps = nil, anonymousftp = nil, databases = nil, freedom_remaining = nil, freedom_assigned = nil, freedom_total = nil, highCapacity = nil, highSecurity = nil)
4289
4289
  @country = country
4290
4290
  @webspace = webspace
4291
- @max_webspace = max_webspace
4291
+ @maxWebspace = maxWebspace
4292
4292
  @subdomains = subdomains
4293
4293
  @multidomains = multidomains
4294
4294
  @multiftps = multiftps
@@ -4297,8 +4297,8 @@ class HostingSummaryReturn
4297
4297
  @freedom_remaining = freedom_remaining
4298
4298
  @freedom_assigned = freedom_assigned
4299
4299
  @freedom_total = freedom_total
4300
- @high_capacity = high_capacity
4301
- @high_security = high_security
4300
+ @highCapacity = highCapacity
4301
+ @highSecurity = highSecurity
4302
4302
  end
4303
4303
  end
4304
4304
 
@@ -4310,20 +4310,20 @@ class FtpInfoReturn
4310
4310
 
4311
4311
  attr_accessor :login
4312
4312
  attr_accessor :quota
4313
- attr_accessor :max_quota
4313
+ attr_accessor :maxQuota
4314
4314
  attr_accessor :url
4315
- attr_accessor :is_todo
4316
- attr_accessor :high_capacity
4317
- attr_accessor :high_security
4315
+ attr_accessor :isTodo
4316
+ attr_accessor :highCapacity
4317
+ attr_accessor :highSecurity
4318
4318
 
4319
- def initialize(login = nil, quota = nil, max_quota = nil, url = nil, is_todo = nil, high_capacity = nil, high_security = nil)
4319
+ def initialize(login = nil, quota = nil, maxQuota = nil, url = nil, isTodo = nil, highCapacity = nil, highSecurity = nil)
4320
4320
  @login = login
4321
4321
  @quota = quota
4322
- @max_quota = max_quota
4322
+ @maxQuota = maxQuota
4323
4323
  @url = url
4324
- @is_todo = is_todo
4325
- @high_capacity = high_capacity
4326
- @high_security = high_security
4324
+ @isTodo = isTodo
4325
+ @highCapacity = highCapacity
4326
+ @highSecurity = highSecurity
4327
4327
  end
4328
4328
  end
4329
4329
 
@@ -4488,11 +4488,11 @@ class LogsAccessStruct
4488
4488
  @@schema_element = [["user", ["SOAP::SOAPString", XSD::QName.new(nil, "user")]], ["lastUpdate", ["SOAP::SOAPString", XSD::QName.new(nil, "lastUpdate")]]]
4489
4489
 
4490
4490
  attr_accessor :user
4491
- attr_accessor :last_update
4491
+ attr_accessor :lastUpdate
4492
4492
 
4493
- def initialize(user = nil, last_update = nil)
4493
+ def initialize(user = nil, lastUpdate = nil)
4494
4494
  @user = user
4495
- @last_update = last_update
4495
+ @lastUpdate = lastUpdate
4496
4496
  end
4497
4497
  end
4498
4498
 
@@ -4511,7 +4511,7 @@ class AutomatedMailGetStateReturn
4511
4511
  end
4512
4512
 
4513
4513
  def return=(value)
4514
- @v_return = v_return
4514
+ @v_return = value
4515
4515
  end
4516
4516
 
4517
4517
  def initialize(bounce = nil, sent = nil, v_return = nil, state = nil)
@@ -4566,15 +4566,15 @@ class CmsAvailableStruct
4566
4566
  attr_accessor :version
4567
4567
  attr_accessor :language
4568
4568
  attr_accessor :category
4569
- attr_accessor :db_prefix
4569
+ attr_accessor :dbPrefix
4570
4570
  attr_accessor :enable
4571
4571
 
4572
- def initialize(name = nil, version = nil, language = nil, category = nil, db_prefix = nil, enable = nil)
4572
+ def initialize(name = nil, version = nil, language = nil, category = nil, dbPrefix = nil, enable = nil)
4573
4573
  @name = name
4574
4574
  @version = version
4575
4575
  @language = language
4576
4576
  @category = category
4577
- @db_prefix = db_prefix
4577
+ @dbPrefix = dbPrefix
4578
4578
  @enable = enable
4579
4579
  end
4580
4580
  end
@@ -4591,16 +4591,16 @@ class CmsStruct
4591
4591
  attr_accessor :language
4592
4592
  attr_accessor :url
4593
4593
  attr_accessor :path
4594
- attr_accessor :admin_login
4594
+ attr_accessor :adminLogin
4595
4595
 
4596
- def initialize(id = nil, name = nil, version = nil, language = nil, url = nil, path = nil, admin_login = nil)
4596
+ def initialize(id = nil, name = nil, version = nil, language = nil, url = nil, path = nil, adminLogin = nil)
4597
4597
  @id = id
4598
4598
  @name = name
4599
4599
  @version = version
4600
4600
  @language = language
4601
4601
  @url = url
4602
4602
  @path = path
4603
- @admin_login = admin_login
4603
+ @adminLogin = adminLogin
4604
4604
  end
4605
4605
  end
4606
4606
 
@@ -4636,19 +4636,19 @@ class CrontabInfoReturn
4636
4636
  attr_accessor :desc
4637
4637
  attr_accessor :email
4638
4638
  attr_accessor :enabled
4639
- attr_accessor :program_language
4640
- attr_accessor :week_day
4639
+ attr_accessor :programLanguage
4640
+ attr_accessor :weekDay
4641
4641
  attr_accessor :days
4642
4642
  attr_accessor :hours
4643
4643
 
4644
- def initialize(id = nil, path = nil, desc = nil, email = nil, enabled = nil, program_language = nil, week_day = nil, days = nil, hours = nil)
4644
+ def initialize(id = nil, path = nil, desc = nil, email = nil, enabled = nil, programLanguage = nil, weekDay = nil, days = nil, hours = nil)
4645
4645
  @id = id
4646
4646
  @path = path
4647
4647
  @desc = desc
4648
4648
  @email = email
4649
4649
  @enabled = enabled
4650
- @program_language = program_language
4651
- @week_day = week_day
4650
+ @programLanguage = programLanguage
4651
+ @weekDay = weekDay
4652
4652
  @days = days
4653
4653
  @hours = hours
4654
4654
  end
@@ -4773,20 +4773,20 @@ class FreedomStruct
4773
4773
  @@schema_ns = "http://soapi.ovh.com/manager"
4774
4774
  @@schema_element = [["referenceReferer", ["SOAP::SOAPString", XSD::QName.new(nil, "referenceReferer")]], ["creationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "creationDate")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["freeDom", ["SOAP::SOAPString", XSD::QName.new(nil, "freeDom")]], ["useDate", ["SOAP::SOAPString", XSD::QName.new(nil, "useDate")]], ["domainReferer", ["SOAP::SOAPString", XSD::QName.new(nil, "domainReferer")]]]
4775
4775
 
4776
- attr_accessor :reference_referer
4777
- attr_accessor :creation_date
4776
+ attr_accessor :referenceReferer
4777
+ attr_accessor :creationDate
4778
4778
  attr_accessor :status
4779
- attr_accessor :free_dom
4780
- attr_accessor :use_date
4781
- attr_accessor :domain_referer
4779
+ attr_accessor :freeDom
4780
+ attr_accessor :useDate
4781
+ attr_accessor :domainReferer
4782
4782
 
4783
- def initialize(reference_referer = nil, creation_date = nil, status = nil, free_dom = nil, use_date = nil, domain_referer = nil)
4784
- @reference_referer = reference_referer
4785
- @creation_date = creation_date
4783
+ def initialize(referenceReferer = nil, creationDate = nil, status = nil, freeDom = nil, useDate = nil, domainReferer = nil)
4784
+ @referenceReferer = referenceReferer
4785
+ @creationDate = creationDate
4786
4786
  @status = status
4787
- @free_dom = free_dom
4788
- @use_date = use_date
4789
- @domain_referer = domain_referer
4787
+ @freeDom = freeDom
4788
+ @useDate = useDate
4789
+ @domainReferer = domainReferer
4790
4790
  end
4791
4791
  end
4792
4792
 
@@ -4928,33 +4928,33 @@ class OperationStruct
4928
4928
  attr_accessor :domain
4929
4929
  attr_accessor :function
4930
4930
  attr_accessor :status
4931
- attr_accessor :internal_status
4931
+ attr_accessor :internalStatus
4932
4932
  attr_accessor :comment
4933
4933
  attr_accessor :users
4934
- attr_accessor :todo_date
4935
- attr_accessor :last_update
4936
- attr_accessor :done_date
4934
+ attr_accessor :todoDate
4935
+ attr_accessor :lastUpdate
4936
+ attr_accessor :doneDate
4937
4937
 
4938
4938
  def retry
4939
4939
  @v_retry
4940
4940
  end
4941
4941
 
4942
4942
  def retry=(value)
4943
- @v_retry = v_retry
4943
+ @v_retry = value
4944
4944
  end
4945
4945
 
4946
- def initialize(id = nil, domain = nil, function = nil, status = nil, internal_status = nil, comment = nil, users = nil, v_retry = nil, todo_date = nil, last_update = nil, done_date = nil)
4946
+ def initialize(id = nil, domain = nil, function = nil, status = nil, internalStatus = nil, comment = nil, users = nil, v_retry = nil, todoDate = nil, lastUpdate = nil, doneDate = nil)
4947
4947
  @id = id
4948
4948
  @domain = domain
4949
4949
  @function = function
4950
4950
  @status = status
4951
- @internal_status = internal_status
4951
+ @internalStatus = internalStatus
4952
4952
  @comment = comment
4953
4953
  @users = users
4954
4954
  @v_retry = v_retry
4955
- @todo_date = todo_date
4956
- @last_update = last_update
4957
- @done_date = done_date
4955
+ @todoDate = todoDate
4956
+ @lastUpdate = lastUpdate
4957
+ @doneDate = doneDate
4958
4958
  end
4959
4959
  end
4960
4960
 
@@ -5035,13 +5035,13 @@ class GlobalAccessStruct
5035
5035
  attr_accessor :alldom
5036
5036
  attr_accessor :ssl
5037
5037
  attr_accessor :rps
5038
- attr_accessor :rps_orphan
5038
+ attr_accessor :rpsOrphan
5039
5039
  attr_accessor :vs
5040
5040
  attr_accessor :voip
5041
5041
  attr_accessor :housing
5042
5042
  attr_accessor :sqlpriv
5043
5043
 
5044
- def initialize(name = nil, domain = nil, hosting = nil, email = nil, pop = nil, dedicated = nil, reverse = nil, alldom = nil, ssl = nil, rps = nil, rps_orphan = nil, vs = nil, voip = nil, housing = nil, sqlpriv = nil)
5044
+ def initialize(name = nil, domain = nil, hosting = nil, email = nil, pop = nil, dedicated = nil, reverse = nil, alldom = nil, ssl = nil, rps = nil, rpsOrphan = nil, vs = nil, voip = nil, housing = nil, sqlpriv = nil)
5045
5045
  @name = name
5046
5046
  @domain = domain
5047
5047
  @hosting = hosting
@@ -5052,7 +5052,7 @@ class GlobalAccessStruct
5052
5052
  @alldom = alldom
5053
5053
  @ssl = ssl
5054
5054
  @rps = rps
5055
- @rps_orphan = rps_orphan
5055
+ @rpsOrphan = rpsOrphan
5056
5056
  @vs = vs
5057
5057
  @voip = voip
5058
5058
  @housing = housing
@@ -5091,13 +5091,13 @@ class EmailRedirectionStruct
5091
5091
  attr_accessor :target
5092
5092
  attr_accessor :local
5093
5093
  attr_accessor :subdomain
5094
- attr_accessor :dns_redirection
5094
+ attr_accessor :dnsRedirection
5095
5095
 
5096
- def initialize(target = nil, local = nil, subdomain = nil, dns_redirection = nil)
5096
+ def initialize(target = nil, local = nil, subdomain = nil, dnsRedirection = nil)
5097
5097
  @target = target
5098
5098
  @local = local
5099
5099
  @subdomain = subdomain
5100
- @dns_redirection = dns_redirection
5100
+ @dnsRedirection = dnsRedirection
5101
5101
  end
5102
5102
  end
5103
5103
 
@@ -5128,14 +5128,14 @@ class PopGetQuotaReturn
5128
5128
  @@schema_ns = "http://soapi.ovh.com/manager"
5129
5129
  @@schema_element = [["emailCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "emailCount")]], ["quota", ["SOAP::SOAPInt", XSD::QName.new(nil, "quota")]], ["maxQuota", ["SOAP::SOAPInt", XSD::QName.new(nil, "maxQuota")]]]
5130
5130
 
5131
- attr_accessor :email_count
5131
+ attr_accessor :emailCount
5132
5132
  attr_accessor :quota
5133
- attr_accessor :max_quota
5133
+ attr_accessor :maxQuota
5134
5134
 
5135
- def initialize(email_count = nil, quota = nil, max_quota = nil)
5136
- @email_count = email_count
5135
+ def initialize(emailCount = nil, quota = nil, maxQuota = nil)
5136
+ @emailCount = emailCount
5137
5137
  @quota = quota
5138
- @max_quota = max_quota
5138
+ @maxQuota = maxQuota
5139
5139
  end
5140
5140
  end
5141
5141
 
@@ -5148,18 +5148,18 @@ class MailingListStruct
5148
5148
  attr_accessor :domain
5149
5149
  attr_accessor :ml
5150
5150
  attr_accessor :owner
5151
- attr_accessor :nb_subscribers
5151
+ attr_accessor :nbSubscribers
5152
5152
  attr_accessor :message_moderation
5153
5153
  attr_accessor :users_post_only
5154
5154
  attr_accessor :subscription_moderation
5155
5155
  attr_accessor :replyto
5156
5156
  attr_accessor :lang
5157
5157
 
5158
- def initialize(domain = nil, ml = nil, owner = nil, nb_subscribers = nil, message_moderation = nil, users_post_only = nil, subscription_moderation = nil, replyto = nil, lang = nil)
5158
+ def initialize(domain = nil, ml = nil, owner = nil, nbSubscribers = nil, message_moderation = nil, users_post_only = nil, subscription_moderation = nil, replyto = nil, lang = nil)
5159
5159
  @domain = domain
5160
5160
  @ml = ml
5161
5161
  @owner = owner
5162
- @nb_subscribers = nb_subscribers
5162
+ @nbSubscribers = nbSubscribers
5163
5163
  @message_moderation = message_moderation
5164
5164
  @users_post_only = users_post_only
5165
5165
  @subscription_moderation = subscription_moderation
@@ -5177,7 +5177,7 @@ class MailingListFullInfoReturn
5177
5177
  attr_accessor :domain
5178
5178
  attr_accessor :ml
5179
5179
  attr_accessor :owner
5180
- attr_accessor :nb_subscribers
5180
+ attr_accessor :nbSubscribers
5181
5181
  attr_accessor :message_moderation
5182
5182
  attr_accessor :users_post_only
5183
5183
  attr_accessor :subscription_moderation
@@ -5186,11 +5186,11 @@ class MailingListFullInfoReturn
5186
5186
  attr_accessor :moderators
5187
5187
  attr_accessor :subscribers
5188
5188
 
5189
- def initialize(domain = nil, ml = nil, owner = nil, nb_subscribers = nil, message_moderation = nil, users_post_only = nil, subscription_moderation = nil, replyto = nil, lang = nil, moderators = nil, subscribers = nil)
5189
+ def initialize(domain = nil, ml = nil, owner = nil, nbSubscribers = nil, message_moderation = nil, users_post_only = nil, subscription_moderation = nil, replyto = nil, lang = nil, moderators = nil, subscribers = nil)
5190
5190
  @domain = domain
5191
5191
  @ml = ml
5192
5192
  @owner = owner
5193
- @nb_subscribers = nb_subscribers
5193
+ @nbSubscribers = nbSubscribers
5194
5194
  @message_moderation = message_moderation
5195
5195
  @users_post_only = users_post_only
5196
5196
  @subscription_moderation = subscription_moderation
@@ -5210,15 +5210,15 @@ class ResponderEmailStruct
5210
5210
  attr_accessor :domain
5211
5211
  attr_accessor :responder
5212
5212
  attr_accessor :content
5213
- attr_accessor :has_pop
5214
- attr_accessor :has_alias
5213
+ attr_accessor :hasPop
5214
+ attr_accessor :hasAlias
5215
5215
 
5216
- def initialize(domain = nil, responder = nil, content = nil, has_pop = nil, has_alias = nil)
5216
+ def initialize(domain = nil, responder = nil, content = nil, hasPop = nil, hasAlias = nil)
5217
5217
  @domain = domain
5218
5218
  @responder = responder
5219
5219
  @content = content
5220
- @has_pop = has_pop
5221
- @has_alias = has_alias
5220
+ @hasPop = hasPop
5221
+ @hasAlias = hasAlias
5222
5222
  end
5223
5223
  end
5224
5224
 
@@ -5245,15 +5245,15 @@ class EmailDomainSummaryReturn
5245
5245
  @@schema_ns = "http://soapi.ovh.com/manager"
5246
5246
  @@schema_element = [["masterNic", ["SOAP::SOAPString", XSD::QName.new(nil, "masterNic")]], ["nbpops", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbpops")]], ["nbforwards", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbforwards")]], ["nbaliases", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbaliases")]], ["nbresponders", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbresponders")]], ["nbmls", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbmls")]]]
5247
5247
 
5248
- attr_accessor :master_nic
5248
+ attr_accessor :masterNic
5249
5249
  attr_accessor :nbpops
5250
5250
  attr_accessor :nbforwards
5251
5251
  attr_accessor :nbaliases
5252
5252
  attr_accessor :nbresponders
5253
5253
  attr_accessor :nbmls
5254
5254
 
5255
- def initialize(master_nic = nil, nbpops = nil, nbforwards = nil, nbaliases = nil, nbresponders = nil, nbmls = nil)
5256
- @master_nic = master_nic
5255
+ def initialize(masterNic = nil, nbpops = nil, nbforwards = nil, nbaliases = nil, nbresponders = nil, nbmls = nil)
5256
+ @masterNic = masterNic
5257
5257
  @nbpops = nbpops
5258
5258
  @nbforwards = nbforwards
5259
5259
  @nbaliases = nbaliases
@@ -5296,16 +5296,16 @@ class EmailFilterStruct
5296
5296
  attr_accessor :action_param
5297
5297
  attr_accessor :active
5298
5298
  attr_accessor :priority
5299
- attr_accessor :nb_rules
5299
+ attr_accessor :nbRules
5300
5300
  attr_accessor :rules
5301
5301
 
5302
- def initialize(filter = nil, action = nil, action_param = nil, active = nil, priority = nil, nb_rules = nil, rules = nil)
5302
+ def initialize(filter = nil, action = nil, action_param = nil, active = nil, priority = nil, nbRules = nil, rules = nil)
5303
5303
  @filter = filter
5304
5304
  @action = action
5305
5305
  @action_param = action_param
5306
5306
  @active = active
5307
5307
  @priority = priority
5308
- @nb_rules = nb_rules
5308
+ @nbRules = nbRules
5309
5309
  @rules = rules
5310
5310
  end
5311
5311
  end
@@ -5418,7 +5418,7 @@ class PrepaidGetHistoryReturn
5418
5418
  end
5419
5419
 
5420
5420
  def end=(value)
5421
- @v_end = v_end
5421
+ @v_end = value
5422
5422
  end
5423
5423
 
5424
5424
  def initialize(page = nil, total = nil, start = nil, v_end = nil, operations = nil)
@@ -5480,26 +5480,26 @@ class BillingInvoiceStruct
5480
5480
  @@schema_element = [["vat", ["SOAP::SOAPString", XSD::QName.new(nil, "vat")]], ["totalPrice", ["SOAP::SOAPString", XSD::QName.new(nil, "totalPrice")]], ["totalPriceWithVat", ["SOAP::SOAPString", XSD::QName.new(nil, "totalPriceWithVat")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["nic", ["SOAP::SOAPString", XSD::QName.new(nil, "nic")]], ["billnum", ["SOAP::SOAPString", XSD::QName.new(nil, "billnum")]], ["details", ["MyArrayOfBillingInvoiceDetailStructType", XSD::QName.new(nil, "details")]], ["domains", ["MyArrayOfStringType", XSD::QName.new(nil, "domains")]], ["billingCountry", ["SOAP::SOAPString", XSD::QName.new(nil, "billingCountry")]], ["ordernum", ["SOAP::SOAPString", XSD::QName.new(nil, "ordernum")]]]
5481
5481
 
5482
5482
  attr_accessor :vat
5483
- attr_accessor :total_price
5484
- attr_accessor :total_price_with_vat
5483
+ attr_accessor :totalPrice
5484
+ attr_accessor :totalPriceWithVat
5485
5485
  attr_accessor :date
5486
5486
  attr_accessor :nic
5487
5487
  attr_accessor :billnum
5488
5488
  attr_accessor :details
5489
5489
  attr_accessor :domains
5490
- attr_accessor :billing_country
5490
+ attr_accessor :billingCountry
5491
5491
  attr_accessor :ordernum
5492
5492
 
5493
- def initialize(vat = nil, total_price = nil, total_price_with_vat = nil, date = nil, nic = nil, billnum = nil, details = nil, domains = nil, billing_country = nil, ordernum = nil)
5493
+ def initialize(vat = nil, totalPrice = nil, totalPriceWithVat = nil, date = nil, nic = nil, billnum = nil, details = nil, domains = nil, billingCountry = nil, ordernum = nil)
5494
5494
  @vat = vat
5495
- @total_price = total_price
5496
- @total_price_with_vat = total_price_with_vat
5495
+ @totalPrice = totalPrice
5496
+ @totalPriceWithVat = totalPriceWithVat
5497
5497
  @date = date
5498
5498
  @nic = nic
5499
5499
  @billnum = billnum
5500
5500
  @details = details
5501
5501
  @domains = domains
5502
- @billing_country = billing_country
5502
+ @billingCountry = billingCountry
5503
5503
  @ordernum = ordernum
5504
5504
  end
5505
5505
  end
@@ -5523,7 +5523,7 @@ class BillingInvoiceInfoDetailStruct
5523
5523
  end
5524
5524
 
5525
5525
  def end=(value)
5526
- @v_end = v_end
5526
+ @v_end = value
5527
5527
  end
5528
5528
 
5529
5529
  def initialize(quantity = nil, service = nil, description = nil, v_end = nil, domain = nil, baseprice = nil, totalprice = nil, start = nil)