-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathtransfer.py
70 lines (53 loc) · 3.97 KB
/
transfer.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from fints.fields import DataElementField, DataElementGroupField
from fints.formals import KTI1, Amount1, BatchTransferParameter1
from .base import FinTS3Segment, ParameterSegment
class HKCCS1(FinTS3Segment):
"""SEPA Einzelüberweisung, version 1
Source: FinTS Financial Transaction Services, Schnittstellenspezifikation, Messages -- Multibankfähige Geschäftsvorfälle """
account = DataElementGroupField(type=KTI1, _d="Kontoverbindung international")
sepa_descriptor = DataElementField(type='an', max_length=256, _d="SEPA Descriptor")
sepa_pain_message = DataElementField(type='bin', _d="SEPA pain message")
class HKIPZ1(FinTS3Segment):
"""SEPA-instant Einzelüberweisung, version 1
Source: FinTS Financial Transaction Services, Schnittstellenspezifikation, Messages -- Multibankfähige Geschäftsvorfälle """
account = DataElementGroupField(type=KTI1, _d="Kontoverbindung international")
sepa_descriptor = DataElementField(type='an', max_length=256, _d="SEPA Descriptor")
sepa_pain_message = DataElementField(type='bin', _d="SEPA pain message")
# class HKIPZ2(FinTS3Segment):
# """SEPA-instant Einzelüberweisung, version 2
#
# Source: FinTS Financial Transaction Services, Schnittstellenspezifikation, Messages -- Multibankfähige Geschäftsvorfälle """
# account = DataElementGroupField(type=KTI1, _d="Kontoverbindung international")
# sepa_descriptor = DataElementField(type='an', max_length=256, _d="SEPA Descriptor")
# sepa_pain_message = DataElementField(type='bin', _d="SEPA pain message")
# allow_convert_sepa_transfer = DataElementField(type="jn", _d="Allow conversion to SEPA transfer if instant-payment not supported")
class HKCCM1(FinTS3Segment):
"""SEPA-Sammelüberweisung, version 1
Source: FinTS Financial Transaction Services, Schnittstellenspezifikation, Messages -- Multibankfähige Geschäftsvorfälle """
account = DataElementGroupField(type=KTI1, _d="Kontoverbindung international")
sum_amount = DataElementGroupField(type=Amount1, _d="Summenfeld")
request_single_booking = DataElementField(type='jn', _d="Einzelbuchung gewünscht")
sepa_descriptor = DataElementField(type='an', max_length=256, _d="SEPA Descriptor")
sepa_pain_message = DataElementField(type='bin', _d="SEPA pain message")
class HKIPM1(FinTS3Segment):
"""SEPA-instant Sammelüberweisung, version 1
Source: FinTS Financial Transaction Services, Schnittstellenspezifikation, Messages -- Multibankfähige Geschäftsvorfälle """
account = DataElementGroupField(type=KTI1, _d="Kontoverbindung international")
sum_amount = DataElementGroupField(type=Amount1, _d="Summenfeld")
request_single_booking = DataElementField(type='jn', _d="Einzelbuchung gewünscht")
sepa_descriptor = DataElementField(type='an', max_length=256, _d="SEPA Descriptor")
sepa_pain_message = DataElementField(type='bin', _d="SEPA pain message")
# class HKIPM2(FinTS3Segment):
# """SEPA-instant Sammelüberweisung, version 2
#
# Source: FinTS Financial Transaction Services, Schnittstellenspezifikation, Messages -- Multibankfähige Geschäftsvorfälle """
# account = DataElementGroupField(type=KTI1, _d="Kontoverbindung international")
# sum_amount = DataElementGroupField(type=Amount1, _d="Summenfeld")
# request_single_booking = DataElementField(type='jn', _d="Einzelbuchung gewünscht")
# sepa_descriptor = DataElementField(type='an', max_length=256, _d="SEPA Descriptor")
# sepa_pain_message = DataElementField(type='bin', _d="SEPA pain message")
# allow_convert_sepa_transfer = DataElementField(type="jn", _d="Allow conversion to SEPA transfer if instant-payment not supported")
class HICCMS1(ParameterSegment):
"""SEPA-Sammelüberweisung Parameter, version 1
Source: FinTS Financial Transaction Services, Schnittstellenspezifikation, Messages -- Multibankfähige Geschäftsvorfälle """
parameter = DataElementGroupField(type=BatchTransferParameter1, _d="Parameter SEPA-Sammelüberweisung")