forked from nemiah/phpFinTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHKSPAv2.php
More file actions
31 lines (27 loc) · 943 Bytes
/
HKSPAv2.php
File metadata and controls
31 lines (27 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/** @noinspection PhpUnused */
namespace Fhp\Segment\SPA;
use Fhp\Segment\BaseSegment;
use Fhp\Segment\Paginateable;
/**
* Segment: SEPA-Kontoverbindung anfordern (Version 2)
*
* @link https://www.hbci-zka.de/dokumente/spezifikation_deutsch/fintsv3/FinTS_3.0_Messages_Geschaeftsvorfaelle_2015-08-07_final_version.pdf
* Section C.10.1.4 a)
*/
class HKSPAv2 extends BaseSegment implements Paginateable
{
/**
* If left empty, all accounts will be returned.
* @var \Fhp\Segment\Common\KtvV3[]|null @Max(999)
*/
public ?array $kontoverbindung = null;
/** Only allowed if {@link ParameterSepaKontoverbindungAnfordernV2::$eingabeAnzahlEintraegeErlaubt} says so. */
public ?int $maximaleAnzahlEintraege = null;
/** For pagination. */
public ?string $aufsetzpunkt = null;
public function setPaginationToken(string $paginationToken)
{
$this->aufsetzpunkt = $paginationToken;
}
}