Skip to content

Commit 7c001bc

Browse files
committed
fix attributes
1 parent 7ddbee3 commit 7c001bc

File tree

121 files changed

+6859
-6859
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+6859
-6859
lines changed

src/Model/Account.php

Lines changed: 60 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ class Account implements ModelInterface, ArrayAccess
5858
*/
5959
protected static $swaggerTypes = [
6060
'customer' => '\Domainrobot\Model\GenericCustomer',
61-
'current_account_balance' => 'double',
62-
'running_total' => 'double',
63-
'credit_limit' => 'double',
61+
'currentAccountBalance' => 'double',
62+
'runningTotal' => 'double',
63+
'creditLimit' => 'double',
6464
'currency' => 'string',
65-
'min_running_total_notification' => 'double',
66-
'min_running_total_notification_email' => 'string',
65+
'minRunningTotalNotification' => 'double',
66+
'minRunningTotalNotificationEmail' => 'string',
6767
'created' => '\DateTime',
6868
'updated' => '\DateTime',
6969
'view' => '\Domainrobot\Model\CurrencyRate'
@@ -76,12 +76,12 @@ class Account implements ModelInterface, ArrayAccess
7676
*/
7777
protected static $swaggerFormats = [
7878
'customer' => null,
79-
'current_account_balance' => 'double',
80-
'running_total' => 'double',
81-
'credit_limit' => 'double',
79+
'currentAccountBalance' => 'double',
80+
'runningTotal' => 'double',
81+
'creditLimit' => 'double',
8282
'currency' => null,
83-
'min_running_total_notification' => 'double',
84-
'min_running_total_notification_email' => null,
83+
'minRunningTotalNotification' => 'double',
84+
'minRunningTotalNotificationEmail' => null,
8585
'created' => 'date-time',
8686
'updated' => 'date-time',
8787
'view' => null
@@ -115,12 +115,12 @@ public static function swaggerFormats()
115115
*/
116116
protected static $attributeMap = [
117117
'customer' => 'customer',
118-
'current_account_balance' => 'currentAccountBalance',
119-
'running_total' => 'runningTotal',
120-
'credit_limit' => 'creditLimit',
118+
'currentAccountBalance' => 'currentAccountBalance',
119+
'runningTotal' => 'runningTotal',
120+
'creditLimit' => 'creditLimit',
121121
'currency' => 'currency',
122-
'min_running_total_notification' => 'minRunningTotalNotification',
123-
'min_running_total_notification_email' => 'minRunningTotalNotificationEmail',
122+
'minRunningTotalNotification' => 'minRunningTotalNotification',
123+
'minRunningTotalNotificationEmail' => 'minRunningTotalNotificationEmail',
124124
'created' => 'created',
125125
'updated' => 'updated',
126126
'view' => 'view'
@@ -133,12 +133,12 @@ public static function swaggerFormats()
133133
*/
134134
protected static $setters = [
135135
'customer' => 'setCustomer',
136-
'current_account_balance' => 'setCurrentAccountBalance',
137-
'running_total' => 'setRunningTotal',
138-
'credit_limit' => 'setCreditLimit',
136+
'currentAccountBalance' => 'setCurrentAccountBalance',
137+
'runningTotal' => 'setRunningTotal',
138+
'creditLimit' => 'setCreditLimit',
139139
'currency' => 'setCurrency',
140-
'min_running_total_notification' => 'setMinRunningTotalNotification',
141-
'min_running_total_notification_email' => 'setMinRunningTotalNotificationEmail',
140+
'minRunningTotalNotification' => 'setMinRunningTotalNotification',
141+
'minRunningTotalNotificationEmail' => 'setMinRunningTotalNotificationEmail',
142142
'created' => 'setCreated',
143143
'updated' => 'setUpdated',
144144
'view' => 'setView'
@@ -151,12 +151,12 @@ public static function swaggerFormats()
151151
*/
152152
protected static $getters = [
153153
'customer' => 'getCustomer',
154-
'current_account_balance' => 'getCurrentAccountBalance',
155-
'running_total' => 'getRunningTotal',
156-
'credit_limit' => 'getCreditLimit',
154+
'currentAccountBalance' => 'getCurrentAccountBalance',
155+
'runningTotal' => 'getRunningTotal',
156+
'creditLimit' => 'getCreditLimit',
157157
'currency' => 'getCurrency',
158-
'min_running_total_notification' => 'getMinRunningTotalNotification',
159-
'min_running_total_notification_email' => 'getMinRunningTotalNotificationEmail',
158+
'minRunningTotalNotification' => 'getMinRunningTotalNotification',
159+
'minRunningTotalNotificationEmail' => 'getMinRunningTotalNotificationEmail',
160160
'created' => 'getCreated',
161161
'updated' => 'getUpdated',
162162
'view' => 'getView'
@@ -223,12 +223,12 @@ public function getModelName()
223223
public function __construct(array $data = null)
224224
{
225225
$this->container['customer'] = isset($data['customer']) ? $this->createData($data['customer'], 'customer') : null;
226-
$this->container['current_account_balance'] = isset($data['current_account_balance']) ? $this->createData($data['current_account_balance'], 'current_account_balance') : null;
227-
$this->container['running_total'] = isset($data['running_total']) ? $this->createData($data['running_total'], 'running_total') : null;
228-
$this->container['credit_limit'] = isset($data['credit_limit']) ? $this->createData($data['credit_limit'], 'credit_limit') : null;
226+
$this->container['currentAccountBalance'] = isset($data['currentAccountBalance']) ? $this->createData($data['currentAccountBalance'], 'currentAccountBalance') : null;
227+
$this->container['runningTotal'] = isset($data['runningTotal']) ? $this->createData($data['runningTotal'], 'runningTotal') : null;
228+
$this->container['creditLimit'] = isset($data['creditLimit']) ? $this->createData($data['creditLimit'], 'creditLimit') : null;
229229
$this->container['currency'] = isset($data['currency']) ? $this->createData($data['currency'], 'currency') : null;
230-
$this->container['min_running_total_notification'] = isset($data['min_running_total_notification']) ? $this->createData($data['min_running_total_notification'], 'min_running_total_notification') : null;
231-
$this->container['min_running_total_notification_email'] = isset($data['min_running_total_notification_email']) ? $this->createData($data['min_running_total_notification_email'], 'min_running_total_notification_email') : null;
230+
$this->container['minRunningTotalNotification'] = isset($data['minRunningTotalNotification']) ? $this->createData($data['minRunningTotalNotification'], 'minRunningTotalNotification') : null;
231+
$this->container['minRunningTotalNotificationEmail'] = isset($data['minRunningTotalNotificationEmail']) ? $this->createData($data['minRunningTotalNotificationEmail'], 'minRunningTotalNotificationEmail') : null;
232232
$this->container['created'] = isset($data['created']) ? $this->createData($data['created'], 'created') : null;
233233
$this->container['updated'] = isset($data['updated']) ? $this->createData($data['updated'], 'updated') : null;
234234
$this->container['view'] = isset($data['view']) ? $this->createData($data['view'], 'view') : null;
@@ -326,73 +326,73 @@ public function setCustomer($customer)
326326
}
327327

328328
/**
329-
* Gets current_account_balance
329+
* Gets currentAccountBalance
330330
*
331331
* @return double
332332
*/
333333
public function getCurrentAccountBalance()
334334
{
335-
return $this->container['current_account_balance'];
335+
return $this->container['currentAccountBalance'];
336336
}
337337

338338
/**
339-
* Sets current_account_balance
339+
* Sets currentAccountBalance
340340
*
341-
* @param double $current_account_balance The real account balance
341+
* @param double $currentAccountBalance The real account balance
342342
*
343343
* @return $this
344344
*/
345-
public function setCurrentAccountBalance($current_account_balance)
345+
public function setCurrentAccountBalance($currentAccountBalance)
346346
{
347-
$this->container['current_account_balance'] = $current_account_balance;
347+
$this->container['currentAccountBalance'] = $currentAccountBalance;
348348

349349
return $this;
350350
}
351351

352352
/**
353-
* Gets running_total
353+
* Gets runningTotal
354354
*
355355
* @return double
356356
*/
357357
public function getRunningTotal()
358358
{
359-
return $this->container['running_total'];
359+
return $this->container['runningTotal'];
360360
}
361361

362362
/**
363-
* Sets running_total
363+
* Sets runningTotal
364364
*
365-
* @param double $running_total The current total, the amount of all finished and unfinished transactions
365+
* @param double $runningTotal The current total, the amount of all finished and unfinished transactions
366366
*
367367
* @return $this
368368
*/
369-
public function setRunningTotal($running_total)
369+
public function setRunningTotal($runningTotal)
370370
{
371-
$this->container['running_total'] = $running_total;
371+
$this->container['runningTotal'] = $runningTotal;
372372

373373
return $this;
374374
}
375375

376376
/**
377-
* Gets credit_limit
377+
* Gets creditLimit
378378
*
379379
* @return double
380380
*/
381381
public function getCreditLimit()
382382
{
383-
return $this->container['credit_limit'];
383+
return $this->container['creditLimit'];
384384
}
385385

386386
/**
387-
* Sets credit_limit
387+
* Sets creditLimit
388388
*
389-
* @param double $credit_limit The credit limit of the account.
389+
* @param double $creditLimit The credit limit of the account.
390390
*
391391
* @return $this
392392
*/
393-
public function setCreditLimit($credit_limit)
393+
public function setCreditLimit($creditLimit)
394394
{
395-
$this->container['credit_limit'] = $credit_limit;
395+
$this->container['creditLimit'] = $creditLimit;
396396

397397
return $this;
398398
}
@@ -422,49 +422,49 @@ public function setCurrency($currency)
422422
}
423423

424424
/**
425-
* Gets min_running_total_notification
425+
* Gets minRunningTotalNotification
426426
*
427427
* @return double
428428
*/
429429
public function getMinRunningTotalNotification()
430430
{
431-
return $this->container['min_running_total_notification'];
431+
return $this->container['minRunningTotalNotification'];
432432
}
433433

434434
/**
435-
* Sets min_running_total_notification
435+
* Sets minRunningTotalNotification
436436
*
437-
* @param double $min_running_total_notification The minimum running total amount if a notification should be send
437+
* @param double $minRunningTotalNotification The minimum running total amount if a notification should be send
438438
*
439439
* @return $this
440440
*/
441-
public function setMinRunningTotalNotification($min_running_total_notification)
441+
public function setMinRunningTotalNotification($minRunningTotalNotification)
442442
{
443-
$this->container['min_running_total_notification'] = $min_running_total_notification;
443+
$this->container['minRunningTotalNotification'] = $minRunningTotalNotification;
444444

445445
return $this;
446446
}
447447

448448
/**
449-
* Gets min_running_total_notification_email
449+
* Gets minRunningTotalNotificationEmail
450450
*
451451
* @return string
452452
*/
453453
public function getMinRunningTotalNotificationEmail()
454454
{
455-
return $this->container['min_running_total_notification_email'];
455+
return $this->container['minRunningTotalNotificationEmail'];
456456
}
457457

458458
/**
459-
* Sets min_running_total_notification_email
459+
* Sets minRunningTotalNotificationEmail
460460
*
461-
* @param string $min_running_total_notification_email The recipient of the notification limit email
461+
* @param string $minRunningTotalNotificationEmail The recipient of the notification limit email
462462
*
463463
* @return $this
464464
*/
465-
public function setMinRunningTotalNotificationEmail($min_running_total_notification_email)
465+
public function setMinRunningTotalNotificationEmail($minRunningTotalNotificationEmail)
466466
{
467-
$this->container['min_running_total_notification_email'] = $min_running_total_notification_email;
467+
$this->container['minRunningTotalNotificationEmail'] = $minRunningTotalNotificationEmail;
468468

469469
return $this;
470470
}

0 commit comments

Comments
 (0)