forked from nemiah/phpFinTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseGeschaeftsvorfallparameter.php
More file actions
33 lines (30 loc) · 1.53 KB
/
BaseGeschaeftsvorfallparameter.php
File metadata and controls
33 lines (30 loc) · 1.53 KB
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
32
33
<?php
/** @noinspection PhpUnused */
namespace Fhp\Segment;
/**
* This is a base format for segments with various names, each of which describes a potential business transaction that
* the bank supports. The presence of the {@link BaseGeschaeftsvorfallparameter} instance in the BPD indicates that the
* type of transaction is supported, and depending on the particular transaction, it may contain further parameters,
* which are implemented in sub-classes of {@link BaseGeschaeftsvorfallparameter}. Note that the segment version of this
* segment matches the version of the potential request segment that we could send to the server.
*
* @link https://www.hbci-zka.de/dokumente/spezifikation_deutsch/fintsv3/FinTS_3.0_Formals_2017-10-06_final_version.pdf
* Section: D.6
*/
abstract class BaseGeschaeftsvorfallparameter extends BaseSegment
{
/**
* Maximum number of request segments of this kind that can be included in a single request message
*/
public int $maximaleAnzahlAuftraege;
/**
* Minimum number of signatures required for this kind of business transaction. Note that zero signatures is
* equivalent to an anonymous connection and one signature (the most common case) can be satisfied with PIN/TAN.
*/
public int $anzahlSignaturenMindestens;
/**
* Minimum cryptographic security required for this transaction type, where 0 means none.
*/
public int $sicherheitsklasse;
// NOTE: Parameters specific to the respective transaction type follow here and are implemented in sub-classes.
}