2017-06-12 12:12:07 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ImportAccount.php
|
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
|
|
* This software may be modified and distributed under the terms of the Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Import\Object;
|
|
|
|
|
|
|
|
|
|
|
|
class ImportAccount
|
|
|
|
{
|
|
|
|
|
2017-06-14 13:13:19 -05:00
|
|
|
/** @var array */
|
|
|
|
private $accountId = [];
|
2017-06-12 12:12:07 -05:00
|
|
|
|
2017-06-14 13:13:19 -05:00
|
|
|
/** @var array */
|
|
|
|
private $accountIban = [];
|
|
|
|
/** @var array */
|
|
|
|
private $accountName = [];
|
|
|
|
|
|
|
|
/** @var array */
|
|
|
|
private $accountNumber = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $accountNumber
|
|
|
|
*/
|
|
|
|
public function setAccountNumber(array $accountNumber)
|
|
|
|
{
|
|
|
|
$this->accountNumber = $accountNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $accountName
|
|
|
|
*/
|
|
|
|
public function setAccountName(array $accountName)
|
|
|
|
{
|
|
|
|
$this->accountName = $accountName;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $value
|
|
|
|
*/
|
|
|
|
public function setAccountId(array $value)
|
2017-06-12 12:12:07 -05:00
|
|
|
{
|
2017-06-14 13:13:19 -05:00
|
|
|
$this->accountId = $value;
|
2017-06-12 12:12:07 -05:00
|
|
|
}
|
2017-06-14 13:13:19 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $accountIban
|
|
|
|
*/
|
|
|
|
public function setAccountIban(array $accountIban)
|
|
|
|
{
|
|
|
|
$this->accountIban = $accountIban;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-12 12:12:07 -05:00
|
|
|
}
|