|
| 1 | +<?php |
| 2 | + |
| 3 | +/** |
| 4 | + * This file is part of the bitrix24-php-sdk package. |
| 5 | + * |
| 6 | + * © Vadim Soluyanov <[email protected]> |
| 7 | + * |
| 8 | + * For the full copyright and license information, please view the MIT-LICENSE.txt |
| 9 | + * file that was distributed with this source code. |
| 10 | + */ |
| 11 | + |
| 12 | +declare(strict_types=1); |
| 13 | + |
| 14 | +namespace Bitrix24\SDK\Services\CRM\Requisites\Result; |
| 15 | + |
| 16 | +use Bitrix24\SDK\Services\CRM\Common\Result\AbstractCrmItem; |
| 17 | +use Carbon\CarbonImmutable; |
| 18 | + |
| 19 | +/** |
| 20 | + * Class RequisiteBankdetailItemResult |
| 21 | + * |
| 22 | + * @property-read int $ID |
| 23 | + * @property-read int $ENTITY_ID |
| 24 | + * @property-read int $COUNTRY_ID |
| 25 | + * @property-read CarbonImmutable|null $DATE_CREATE |
| 26 | + * @property-read CarbonImmutable|null $DATE_MODIFY |
| 27 | + * @property-read int|null $CREATED_BY_ID |
| 28 | + * @property-read int|null $MODIFY_BY_ID |
| 29 | + * @property-read string $NAME |
| 30 | + * @property-read string $CODE |
| 31 | + * @property-read string $XML_ID |
| 32 | + * @property-read bool|null $ACTIVE |
| 33 | + * @property-read int|null $SORT |
| 34 | + * @property-read string|null $RQ_BANK_NAME |
| 35 | + * @property-read string|null $RQ_BANK_ADDR |
| 36 | + * @property-read string|null $RQ_BANK_CODE |
| 37 | + * @property-read string|null $RQ_BANK_ROUTE_NUM |
| 38 | + * @property-read string|null $RQ_BIK |
| 39 | + * @property-read string|null $RQ_CODEB |
| 40 | + * @property-read string|null $RQ_CODEG |
| 41 | + * @property-read string|null $RQ_RIB |
| 42 | + * @property-read string|null $RQ_MFO |
| 43 | + * @property-read string|null $RQ_ACC_NAME |
| 44 | + * @property-read string|null $RQ_ACC_TYPE |
| 45 | + * @property-read string|null $RQ_AGENCY_NAME |
| 46 | + * @property-read string|null $RQ_IIK |
| 47 | + * @property-read string|null $RQ_ACC_CURRENCY |
| 48 | + * @property-read string|null $RQ_ACC_NUM |
| 49 | + * @property-read string|null $RQ_COR_ACC_NUM |
| 50 | + * @property-read string|null $RQ_IBAN |
| 51 | + * @property-read string|null $RQ_SWIFT |
| 52 | + * @property-read string|null $RQ_BIC |
| 53 | + * @property-read string|null $COMMENTS |
| 54 | + * @property-read string|null $ORIGINATOR_ID |
| 55 | + */ |
| 56 | +class RequisiteBankdetailItemResult extends AbstractCrmItem |
| 57 | +{ |
| 58 | + /** |
| 59 | + * |
| 60 | + * @return mixed|null |
| 61 | + * @throws \Bitrix24\SDK\Services\CRM\Userfield\Exceptions\UserfieldNotFoundException |
| 62 | + */ |
| 63 | + public function getUserfieldByFieldName(string $userfieldName) |
| 64 | + { |
| 65 | + return $this->getKeyWithUserfieldByFieldName($userfieldName); |
| 66 | + } |
| 67 | +} |
0 commit comments