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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
|
# -*- encoding: utf-8 -*-
# This file is generated be aqcodegen
# DO NOT CHANGE BY HAND
from _basetypes import *
from enum import Enum, check_enum
class BankInfoService(c_void_p):
def _check_retval_(p):
if p is None:
return None
v = BankInfoService.__new__(BankInfoService)
c_void_p.__init__(v, p)
aqb.AB_BankInfoService_Attach(v)
return v
_check_retval_ = staticmethod(_check_retval_)
def __init__(self):
tr = aqb.AB_BankInfoService_new()
c_void_p.__init__(self, tr)
def __del__(self):
aqb.AB_BankInfoService_free(self)
modified = property(
aqb.AB_BankInfoService_IsModified,
aqb.AB_BankInfoService_SetModified)
type = property(
aqb.AB_BankInfoService_GetType,
aqb.AB_BankInfoService_SetType,
'The following types have been registered with AqBanking:\n'
'HBCI - German homebanking protocol\n'
'OFX - OFX direct connect protocol')
address = property(
aqb.AB_BankInfoService_GetAddress,
aqb.AB_BankInfoService_SetAddress,
'For most services this is the URL or hostname of the server.')
suffix = property(
aqb.AB_BankInfoService_GetSuffix,
aqb.AB_BankInfoService_SetSuffix,
'For IP based services this is the port to be used (if omitted\n'
'a default value suitable for the service is chosen).')
pversion = property(
aqb.AB_BankInfoService_GetPversion,
aqb.AB_BankInfoService_SetPversion,
'The content of this field depends on the service type.\n'
'For HBCI this is the protocol version to be used:\n'
'2.01\n'
'2.10\n'
'2.20')
mode = property(
aqb.AB_BankInfoService_GetMode,
aqb.AB_BankInfoService_SetMode,
'The content of this field depends on the service type.\n'
'For HBCI the following values are used:\n'
'DDV\n'
'RDH1\n'
'RDH2\n'
'RDH3\n'
'RDH4\n'
'PINTAN')
aux1 = property(
aqb.AB_BankInfoService_GetAux1,
aqb.AB_BankInfoService_SetAux1,
'This is a multi purpose field to be used by a bankinfo plugin as\n'
'it sees fit.\n'
'OFX uses this to store the FID from the bankinfo file.')
aux2 = property(
aqb.AB_BankInfoService_GetAux2,
aqb.AB_BankInfoService_SetAux2,
'This is a multi purpose field to be used by a bankinfo plugin as\n'
'it sees fit.\n'
'OFX uses this to store the ORG field from the bankinfo file.')
def __str__(self):
return "<class BankInfoService:\nmodified=%s\ntype=%s\naddress=%s\nsuffix=%s\npversion=%s\nmode=%s\naux1=%s\naux2=%s\n/BankInfoService>" % (self.modified,self.type,self.address,self.suffix,self.pversion,self.mode,self.aux1,self.aux2)
class BankInfo(c_void_p):
def _check_retval_(p):
if p is None:
return None
v = BankInfo.__new__(BankInfo)
c_void_p.__init__(v, p)
aqb.AB_BankInfo_Attach(v)
return v
_check_retval_ = staticmethod(_check_retval_)
def __init__(self):
tr = aqb.AB_BankInfo_new()
c_void_p.__init__(self, tr)
def __del__(self):
aqb.AB_BankInfo_free(self)
modified = property(
aqb.AB_BankInfo_IsModified,
aqb.AB_BankInfo_SetModified)
country = property(
aqb.AB_BankInfo_GetCountry,
aqb.AB_BankInfo_SetCountry)
branchId = property(
aqb.AB_BankInfo_GetBranchId,
aqb.AB_BankInfo_SetBranchId)
bankId = property(
aqb.AB_BankInfo_GetBankId,
aqb.AB_BankInfo_SetBankId)
bic = property(
aqb.AB_BankInfo_GetBic,
aqb.AB_BankInfo_SetBic)
bankName = property(
aqb.AB_BankInfo_GetBankName,
aqb.AB_BankInfo_SetBankName)
location = property(
aqb.AB_BankInfo_GetLocation,
aqb.AB_BankInfo_SetLocation)
street = property(
aqb.AB_BankInfo_GetStreet,
aqb.AB_BankInfo_SetStreet)
zipcode = property(
aqb.AB_BankInfo_GetZipcode,
aqb.AB_BankInfo_SetZipcode)
city = property(
aqb.AB_BankInfo_GetCity,
aqb.AB_BankInfo_SetCity)
region = property(
aqb.AB_BankInfo_GetRegion,
aqb.AB_BankInfo_SetRegion)
phone = property(
aqb.AB_BankInfo_GetPhone,
aqb.AB_BankInfo_SetPhone)
fax = property(
aqb.AB_BankInfo_GetFax,
aqb.AB_BankInfo_SetFax)
email = property(
aqb.AB_BankInfo_GetEmail,
aqb.AB_BankInfo_SetEmail)
website = property(
aqb.AB_BankInfo_GetWebsite,
aqb.AB_BankInfo_SetWebsite)
services = property(
aqb.AB_BankInfo_GetServices,
lambda self, v: aqb.AB_BankInfo_SetServices(self, makeBankInfoServicelist(v)))
def __str__(self):
return "<class BankInfo:\nmodified=%s\ncountry=%s\nbranchId=%s\nbankId=%s\nbic=%s\nbankName=%s\nlocation=%s\nstreet=%s\nzipcode=%s\ncity=%s\nregion=%s\nphone=%s\nfax=%s\nemail=%s\nwebsite=%s\nservices=%s\n/BankInfo>" % (self.modified,self.country,self.branchId,self.bankId,self.bic,self.bankName,self.location,self.street,self.zipcode,self.city,self.region,self.phone,self.fax,self.email,self.website,self.services)
class EuTransferInfo(c_void_p):
def _check_retval_(p):
if p is None:
return None
v = EuTransferInfo.__new__(EuTransferInfo)
c_void_p.__init__(v, p)
aqb.AB_EuTransferInfo_Attach(v)
return v
_check_retval_ = staticmethod(_check_retval_)
def __init__(self):
tr = aqb.AB_EuTransferInfo_new()
c_void_p.__init__(self, tr)
def __del__(self):
aqb.AB_EuTransferInfo_free(self)
modified = property(
aqb.AB_EuTransferInfo_IsModified,
aqb.AB_EuTransferInfo_SetModified)
countryCode = property(
aqb.AB_EuTransferInfo_GetCountryCode,
aqb.AB_EuTransferInfo_SetCountryCode,
'This is the two-character ISO country code (as used in toplevel\n'
'domains). For Germany use "DE".')
fieldLimits = property(
aqb.AB_EuTransferInfo_GetFieldLimits,
lambda self, v: aqb.AB_EuTransferInfo_SetFieldLimits(self, makeTransactionLimitslist(v)))
limitLocalValue = property(
aqb.AB_EuTransferInfo_GetLimitLocalValue,
aqb.AB_EuTransferInfo_SetLimitLocalValue,
'Optional limit for a transfer in local currency.')
limitForeignValue = property(
aqb.AB_EuTransferInfo_GetLimitForeignValue,
aqb.AB_EuTransferInfo_SetLimitForeignValue,
'Optional limit for a transfer in foreign currency.')
def __str__(self):
return "<class EuTransferInfo:\nmodified=%s\ncountryCode=%s\nfieldLimits=%s\nlimitLocalValue=%s\nlimitForeignValue=%s\n/EuTransferInfo>" % (self.modified,self.countryCode,self.fieldLimits,self.limitLocalValue,self.limitForeignValue)
class Pin(c_void_p):
def _check_retval_(p):
if p is None:
return None
v = Pin.__new__(Pin)
c_void_p.__init__(v, p)
aqb.AB_Pin_Attach(v)
return v
_check_retval_ = staticmethod(_check_retval_)
def __init__(self):
tr = aqb.AB_Pin_new()
c_void_p.__init__(self, tr)
def __del__(self):
aqb.AB_Pin_free(self)
# modified = property(
# aqb.AB_Pin_IsModified,
# aqb.AB_Pin_SetModified)
#
token = property(
aqb.AB_Pin_GetToken,
aqb.AB_Pin_SetToken)
value = property(
aqb.AB_Pin_GetValue,
aqb.AB_Pin_SetValue)
hash = property(
aqb.AB_Pin_GetHash,
aqb.AB_Pin_SetHash)
status = property(
aqb.AB_Pin_GetStatus,
aqb.AB_Pin_SetStatus)
def __str__(self):
return "<class Pin:\nmodified=%s\ntoken=%s\nvalue=%s\nhash=%s\nstatus=%s\n/Pin>" % (self.modified,self.token,self.value,self.hash,self.status)
class Split(c_void_p):
'This type contains all important information about transaction splits.\n'
'Please note that all text fields are in UTF-8.'
def _check_retval_(p):
if p is None:
return None
v = Split.__new__(Split)
c_void_p.__init__(v, p)
aqb.AB_Split_Attach(v)
return v
_check_retval_ = staticmethod(_check_retval_)
def __init__(self):
tr = aqb.AB_Split_new()
c_void_p.__init__(self, tr)
def __del__(self):
aqb.AB_Split_free(self)
modified = property(
aqb.AB_Split_IsModified,
aqb.AB_Split_SetModified)
# Group Account Info
# This group contains information about the remote account.
# This is the two-character ISO country code (as used in toplevel
# domains). For Germany use "DE".
# This is the branch id of the remote bank (OFX only)
country = property(
aqb.AB_Split_GetCountry,
aqb.AB_Split_SetCountry,
'This is the two-character ISO country code (as used in toplevel\n'
'domains). For Germany use "DE".')
bankCode = property(
aqb.AB_Split_GetBankCode,
aqb.AB_Split_SetBankCode)
branchId = property(
aqb.AB_Split_GetBranchId,
aqb.AB_Split_SetBranchId,
'This is the branch id of the remote bank (OFX only)')
accountNumber = property(
aqb.AB_Split_GetAccountNumber,
aqb.AB_Split_SetAccountNumber)
suffix = property(
aqb.AB_Split_GetSuffix,
aqb.AB_Split_SetSuffix)
name = property(
aqb.AB_Split_GetName,
lambda self, v: aqb.AB_Split_SetName(self, makeStringlist(v)))
# Group Value
value = property(
aqb.AB_Split_GetValue,
aqb.AB_Split_SetValue)
purpose = property(
aqb.AB_Split_GetPurpose,
lambda self, v: aqb.AB_Split_SetPurpose(self, makeStringlist(v)))
category = property(
aqb.AB_Split_GetCategory,
lambda self, v: aqb.AB_Split_SetCategory(self, makeStringlist(v)))
def __str__(self):
return "<class Split:\nmodified=%s\ncountry=%s\nbankCode=%s\nbranchId=%s\naccountNumber=%s\nsuffix=%s\nname=%s\nvalue=%s\npurpose=%s\ncategory=%s\n/Split>" % (self.modified,self.country,self.bankCode,self.branchId,self.accountNumber,self.suffix,self.name,self.value,self.purpose,self.category)
class TransactionLimits(c_void_p):
'This type describes the limits for fields of an @ref AB_TRANSACTION.\n'
'The limits have the following meanings:\n'
'maxLenSOMETHING: if 0 then this limit is unknown, if -1 then the\n'
'described element is not allowed to be set in the transaction.\n'
'All other values represent the maximum lenght of the described\n'
'field.\n'
'minLenSOMETHING: if 0 then this limit is unknown.\n'
'All other values represent the minimum lenght of the described\n'
'field.\n'
'maxLinesSOMETHING: if 0 then this limit is unknown\n'
'All other values represent the maximum number of lines for the\n'
'described field.\n'
'minLinesSOMETHING: if 0 then this limit is unknown.\n'
'All other values represent the minimum number of lines for the\n'
'described field.\n'
'valuesSOMETHING: A list of allowed values (as string). If this list\n'
'is empty then there all values are allowed (those lists @b exist in\n'
'any case, so the appropriate getter function will never return NULL).\n'
'allowSOMETHING: If SOMETHING is allowed then the value is "1".\n'
'If SOMETHING is NOT allowed then the value is "-1". If it is\n'
'unknown whether SOMETHING is allowed or not then this value is "0".\n'
'So if you want to check whether an given field is at all allowed you\n'
'must check whether "maxLenSOMETHING" has a value of "-1".'
def _check_retval_(p):
if p is None:
return None
v = TransactionLimits.__new__(TransactionLimits)
c_void_p.__init__(v, p)
aqb.AB_TransactionLimits_Attach(v)
return v
_check_retval_ = staticmethod(_check_retval_)
def __init__(self):
tr = aqb.AB_TransactionLimits_new()
c_void_p.__init__(self, tr)
def __del__(self):
aqb.AB_TransactionLimits_free(self)
modified = property(
aqb.AB_TransactionLimits_IsModified,
aqb.AB_TransactionLimits_SetModified)
# Group Issuer Name
# Limits for the issuer name.
maxLenLocalName = property(
aqb.AB_TransactionLimits_GetMaxLenLocalName,
aqb.AB_TransactionLimits_SetMaxLenLocalName)
minLenLocalName = property(
aqb.AB_TransactionLimits_GetMinLenLocalName,
aqb.AB_TransactionLimits_SetMinLenLocalName)
# Group Payee Name
# Limits for the payee name.
maxLenRemoteName = property(
aqb.AB_TransactionLimits_GetMaxLenRemoteName,
aqb.AB_TransactionLimits_SetMaxLenRemoteName)
minLenRemoteName = property(
aqb.AB_TransactionLimits_GetMinLenRemoteName,
aqb.AB_TransactionLimits_SetMinLenRemoteName)
maxLinesRemoteName = property(
aqb.AB_TransactionLimits_GetMaxLinesRemoteName,
aqb.AB_TransactionLimits_SetMaxLinesRemoteName)
minLinesRemoteName = property(
aqb.AB_TransactionLimits_GetMinLinesRemoteName,
aqb.AB_TransactionLimits_SetMinLinesRemoteName)
# Group Local Bank Code
# Limits for local bank code.
maxLenLocalBankCode = property(
aqb.AB_TransactionLimits_GetMaxLenLocalBankCode,
aqb.AB_TransactionLimits_SetMaxLenLocalBankCode)
minLenLocalBankCode = property(
aqb.AB_TransactionLimits_GetMinLenLocalBankCode,
aqb.AB_TransactionLimits_SetMinLenLocalBankCode)
# Group Local Account Id
# Limits for local account id.
maxLenLocalAccountNumber = property(
aqb.AB_TransactionLimits_GetMaxLenLocalAccountNumber,
aqb.AB_TransactionLimits_SetMaxLenLocalAccountNumber)
minLenLocalAccountNumber = property(
aqb.AB_TransactionLimits_GetMinLenLocalAccountNumber,
aqb.AB_TransactionLimits_SetMinLenLocalAccountNumber)
# Group Local Account Number
# Limits for local account id suffix.
maxLenLocalSuffix = property(
aqb.AB_TransactionLimits_GetMaxLenLocalSuffix,
aqb.AB_TransactionLimits_SetMaxLenLocalSuffix)
minLenLocalSuffix = property(
aqb.AB_TransactionLimits_GetMinLenLocalSuffix,
aqb.AB_TransactionLimits_SetMinLenLocalSuffix)
# Group Remote Bank Code
# Limits for remote bank code.
maxLenRemoteBankCode = property(
aqb.AB_TransactionLimits_GetMaxLenRemoteBankCode,
aqb.AB_TransactionLimits_SetMaxLenRemoteBankCode)
minLenRemoteBankCode = property(
aqb.AB_TransactionLimits_GetMinLenRemoteBankCode,
aqb.AB_TransactionLimits_SetMinLenRemoteBankCode)
# Group Remote Account Number
# Limits for remote account number.
maxLenRemoteAccountNumber = property(
aqb.AB_TransactionLimits_GetMaxLenRemoteAccountNumber,
aqb.AB_TransactionLimits_SetMaxLenRemoteAccountNumber)
minLenRemoteAccountNumber = property(
aqb.AB_TransactionLimits_GetMinLenRemoteAccountNumber,
aqb.AB_TransactionLimits_SetMinLenRemoteAccountNumber)
# Group Remote Account Number Suffix
# Limits for remote account id suffix.
maxLenRemoteSuffix = property(
aqb.AB_TransactionLimits_GetMaxLenRemoteSuffix,
aqb.AB_TransactionLimits_SetMaxLenRemoteSuffix)
minLenRemoteSuffix = property(
aqb.AB_TransactionLimits_GetMinLenRemoteSuffix,
aqb.AB_TransactionLimits_SetMinLenRemoteSuffix)
# Group Remote IBAN
# Limits for remote IAN.
maxLenRemoteIban = property(
aqb.AB_TransactionLimits_GetMaxLenRemoteIban,
aqb.AB_TransactionLimits_SetMaxLenRemoteIban)
minLenRemoteIban = property(
aqb.AB_TransactionLimits_GetMinLenRemoteIban,
aqb.AB_TransactionLimits_SetMinLenRemoteIban)
# Group Text Key
# Limits for textKey.
# This string list contains one entry for every supported text key.
# The values must be positive integers in decimal form (no leading
# zero, no comma or decimal point).
maxLenTextKey = property(
aqb.AB_TransactionLimits_GetMaxLenTextKey,
aqb.AB_TransactionLimits_SetMaxLenTextKey)
minLenTextKey = property(
aqb.AB_TransactionLimits_GetMinLenTextKey,
aqb.AB_TransactionLimits_SetMinLenTextKey)
valuesTextKey = property(
aqb.AB_TransactionLimits_GetValuesTextKey,
lambda self, v: aqb.AB_TransactionLimits_SetValuesTextKey(self, makeStringlist(v)))
# Group Customer Reference
# Limits for customer reference.
maxLenCustomerReference = property(
aqb.AB_TransactionLimits_GetMaxLenCustomerReference,
aqb.AB_TransactionLimits_SetMaxLenCustomerReference)
minLenCustomerReference = property(
aqb.AB_TransactionLimits_GetMinLenCustomerReference,
aqb.AB_TransactionLimits_SetMinLenCustomerReference)
# Group Bank Reference
# Limits for bank reference.
maxLenBankReference = property(
aqb.AB_TransactionLimits_GetMaxLenBankReference,
aqb.AB_TransactionLimits_SetMaxLenBankReference)
minLenBankReference = property(
aqb.AB_TransactionLimits_GetMinLenBankReference,
aqb.AB_TransactionLimits_SetMinLenBankReference)
# Group Purpose
# Limits for purpose (called memo in some apps).
maxLenPurpose = property(
aqb.AB_TransactionLimits_GetMaxLenPurpose,
aqb.AB_TransactionLimits_SetMaxLenPurpose)
minLenPurpose = property(
aqb.AB_TransactionLimits_GetMinLenPurpose,
aqb.AB_TransactionLimits_SetMinLenPurpose)
maxLinesPurpose = property(
aqb.AB_TransactionLimits_GetMaxLinesPurpose,
aqb.AB_TransactionLimits_SetMaxLinesPurpose)
minLinesPurpose = property(
aqb.AB_TransactionLimits_GetMinLinesPurpose,
aqb.AB_TransactionLimits_SetMinLinesPurpose)
# Group Standing Orders And Dated Transfer
# These limits apply to standing orders and dated transfers only.
# Minimum time in days between issueing of a request and its
# first execution.
# Maximum time in days between issueing of a request and its
# first execution.
# This string list contains one entry for every supported cycle.
# These value are accepted when "period" is "weekly".
# The values must be positive integers in decimal form (no leading
# zero, no comma or decimal point).
# Allowed values are "0" (all cycles possible) and "1"-"52".
# This string list contains one entry for every supported cycle.
# These value are accepted when "period" is "monthly".
# The values must be positive integers in decimal form (no leading
# zero, no comma or decimal point).
# Allowed values are "0" (all cycles possible) and "1"-"12".
# This string list contains one entry for every supported day of the
# week.
# These value are accepted when "period" is "weekly".
# The values must be positive integers in decimal form (no leading
# zero, no comma or decimal point).
# Allowed values are "0" (all days allowed) and "1"-"7".
# This string list contains one entry for every supported monthly
# cycle.
# These value are accepted when "period" is "monthly".
# The values must be positive integers in decimal form (no leading
# zero, no comma or decimal point).
# Allowed are "0" (all days possible), "1"-"30", "97" (ultimo-2),
# "98" (ultimo-1) and "99" (ultimo).
minValueSetupTime = property(
aqb.AB_TransactionLimits_GetMinValueSetupTime,
aqb.AB_TransactionLimits_SetMinValueSetupTime,
'Minimum time in days between issueing of a request and its\n'
'first execution.')
maxValueSetupTime = property(
aqb.AB_TransactionLimits_GetMaxValueSetupTime,
aqb.AB_TransactionLimits_SetMaxValueSetupTime,
'Maximum time in days between issueing of a request and its\n'
'first execution.')
valuesCycleWeek = property(
aqb.AB_TransactionLimits_GetValuesCycleWeek,
lambda self, v: aqb.AB_TransactionLimits_SetValuesCycleWeek(self, makeStringlist(v)))
valuesCycleMonth = property(
aqb.AB_TransactionLimits_GetValuesCycleMonth,
lambda self, v: aqb.AB_TransactionLimits_SetValuesCycleMonth(self, makeStringlist(v)))
valuesExecutionDayWeek = property(
aqb.AB_TransactionLimits_GetValuesExecutionDayWeek,
lambda self, v: aqb.AB_TransactionLimits_SetValuesExecutionDayWeek(self, makeStringlist(v)))
valuesExecutionDayMonth = property(
aqb.AB_TransactionLimits_GetValuesExecutionDayMonth,
lambda self, v: aqb.AB_TransactionLimits_SetValuesExecutionDayMonth(self, makeStringlist(v)))
allowMonthly = property(
aqb.AB_TransactionLimits_GetAllowMonthly,
aqb.AB_TransactionLimits_SetAllowMonthly)
allowWeekly = property(
aqb.AB_TransactionLimits_GetAllowWeekly,
aqb.AB_TransactionLimits_SetAllowWeekly)
allowChangeRecipientAccount = property(
aqb.AB_TransactionLimits_GetAllowChangeRecipientAccount,
aqb.AB_TransactionLimits_SetAllowChangeRecipientAccount)
allowChangeRecipientName = property(
aqb.AB_TransactionLimits_GetAllowChangeRecipientName,
aqb.AB_TransactionLimits_SetAllowChangeRecipientName)
allowChangeValue = property(
aqb.AB_TransactionLimits_GetAllowChangeValue,
aqb.AB_TransactionLimits_SetAllowChangeValue)
allowChangeTextKey = property(
aqb.AB_TransactionLimits_GetAllowChangeTextKey,
aqb.AB_TransactionLimits_SetAllowChangeTextKey)
allowChangePurpose = property(
aqb.AB_TransactionLimits_GetAllowChangePurpose,
aqb.AB_TransactionLimits_SetAllowChangePurpose)
allowChangeFirstExecutionDate = property(
aqb.AB_TransactionLimits_GetAllowChangeFirstExecutionDate,
aqb.AB_TransactionLimits_SetAllowChangeFirstExecutionDate)
allowChangeLastExecutionDate = property(
aqb.AB_TransactionLimits_GetAllowChangeLastExecutionDate,
aqb.AB_TransactionLimits_SetAllowChangeLastExecutionDate)
allowChangeCycle = property(
aqb.AB_TransactionLimits_GetAllowChangeCycle,
aqb.AB_TransactionLimits_SetAllowChangeCycle)
allowChangePeriod = property(
aqb.AB_TransactionLimits_GetAllowChangePeriod,
aqb.AB_TransactionLimits_SetAllowChangePeriod)
allowChangeExecutionDay = property(
aqb.AB_TransactionLimits_GetAllowChangeExecutionDay,
aqb.AB_TransactionLimits_SetAllowChangeExecutionDay)
def __str__(self):
return "<class TransactionLimits:\nmodified=%s\nmaxLenLocalName=%s\nminLenLocalName=%s\nmaxLenRemoteName=%s\nminLenRemoteName=%s\nmaxLinesRemoteName=%s\nminLinesRemoteName=%s\nmaxLenLocalBankCode=%s\nminLenLocalBankCode=%s\nmaxLenLocalAccountNumber=%s\nminLenLocalAccountNumber=%s\nmaxLenLocalSuffix=%s\nminLenLocalSuffix=%s\nmaxLenRemoteBankCode=%s\nminLenRemoteBankCode=%s\nmaxLenRemoteAccountNumber=%s\nminLenRemoteAccountNumber=%s\nmaxLenRemoteSuffix=%s\nminLenRemoteSuffix=%s\nmaxLenRemoteIban=%s\nminLenRemoteIban=%s\nmaxLenTextKey=%s\nminLenTextKey=%s\nvaluesTextKey=%s\nmaxLenCustomerReference=%s\nminLenCustomerReference=%s\nmaxLenBankReference=%s\nminLenBankReference=%s\nmaxLenPurpose=%s\nminLenPurpose=%s\nmaxLinesPurpose=%s\nminLinesPurpose=%s\nminValueSetupTime=%s\nmaxValueSetupTime=%s\nvaluesCycleWeek=%s\nvaluesCycleMonth=%s\nvaluesExecutionDayWeek=%s\nvaluesExecutionDayMonth=%s\nallowMonthly=%s\nallowWeekly=%s\nallowChangeRecipientAccount=%s\nallowChangeRecipientName=%s\nallowChangeValue=%s\nallowChangeTextKey=%s\nallowChangePurpose=%s\nallowChangeFirstExecutionDate=%s\nallowChangeLastExecutionDate=%s\nallowChangeCycle=%s\nallowChangePeriod=%s\nallowChangeExecutionDay=%s\n/TransactionLimits>" % (self.modified,self.maxLenLocalName,self.minLenLocalName,self.maxLenRemoteName,self.minLenRemoteName,self.maxLinesRemoteName,self.minLinesRemoteName,self.maxLenLocalBankCode,self.minLenLocalBankCode,self.maxLenLocalAccountNumber,self.minLenLocalAccountNumber,self.maxLenLocalSuffix,self.minLenLocalSuffix,self.maxLenRemoteBankCode,self.minLenRemoteBankCode,self.maxLenRemoteAccountNumber,self.minLenRemoteAccountNumber,self.maxLenRemoteSuffix,self.minLenRemoteSuffix,self.maxLenRemoteIban,self.minLenRemoteIban,self.maxLenTextKey,self.minLenTextKey,self.valuesTextKey,self.maxLenCustomerReference,self.minLenCustomerReference,self.maxLenBankReference,self.minLenBankReference,self.maxLenPurpose,self.minLenPurpose,self.maxLinesPurpose,self.minLinesPurpose,self.minValueSetupTime,self.maxValueSetupTime,self.valuesCycleWeek,self.valuesCycleMonth,self.valuesExecutionDayWeek,self.valuesExecutionDayMonth,self.allowMonthly,self.allowWeekly,self.allowChangeRecipientAccount,self.allowChangeRecipientName,self.allowChangeValue,self.allowChangeTextKey,self.allowChangePurpose,self.allowChangeFirstExecutionDate,self.allowChangeLastExecutionDate,self.allowChangeCycle,self.allowChangePeriod,self.allowChangeExecutionDay)
class Transaction(c_void_p):
'This type contains all important information about transactions.\n'
'All text fields are in UTF-8.\n'
'Please note: Since version 0.9.9.1 of AqBanking a transaction may\n'
'contain splits.\n'
'If an AB_TRANSACTION actually does contain splits then some variables\n'
'(like localCountry) are stored within the AB_SPLITs rather than\n'
'in AB_TRANSACTION.\n'
'So your application should first check for splits and read the\n'
'information (marked as in AB_SPLIT below) from them.'
def _check_retval_(p):
if p is None:
return None
v = Transaction.__new__(Transaction)
c_void_p.__init__(v, p)
aqb.AB_Transaction_Attach(v)
return v
_check_retval_ = staticmethod(_check_retval_)
def __init__(self):
tr = aqb.AB_Transaction_new()
c_void_p.__init__(self, tr)
def __del__(self):
aqb.AB_Transaction_free(self)
class Period(Enum):
unknown = -1 # unknown
none = 0 # No period.
monthly = 1 # The standing order is to be executed every month.
weekly = 2 # The standing order is to be executed every week.
class PeriodAdapter(c_int):
def _check_retval_(i):
return Transaction.Period(i)
_check_retval_ = staticmethod(_check_retval_)
def from_param(cls, e):
check_enum(e, Transaction.Period, 'argument')
return int(e)
from_param = classmethod(from_param)
class Type(Enum):
unknown = -1 # unknown
transaction = 0 # Simple transaction (as in transaction statements)
transfer = 1 # Transfer type of transaction (as used with transfer jobs)
debitNote = 2 # Debit note type of transaction (as used with debit note jobs)
euTransfer = 3 # EU-Transfer type of transaction (as used for with transfer jobs)
class TypeAdapter(c_int):
def _check_retval_(i):
return Transaction.Type(i)
_check_retval_ = staticmethod(_check_retval_)
def from_param(cls, e):
check_enum(e, Transaction.Type, 'argument')
return int(e)
from_param = classmethod(from_param)
class SubType(Enum):
unknown = -1 # unknown
none = 0 # No transfer sub-type
standard = 1 # Standard transfer.
check = 2 # Check.
bookedDebitNote = 3 # Debit note (Abbuchungsverfahren)
drawnDebitNote = 4 # Debit note (Einzugsermaechtigung)
standingOrder = 5 # Standing order (Dauerauftrag)
loan = 6 # Loan transfer.
euStandard = 7 # EU standard transfer.
euASAP = 8 # Eu transfer which is to be executed the same day.
buy = 9 # Buy stocks and alike
sell = 10 # Sell stocks and alike
reinvest = 11 # Reinvestment.
dividend = 12 # Dividend.
class SubTypeAdapter(c_int):
def _check_retval_(i):
return Transaction.SubType(i)
_check_retval_ = staticmethod(_check_retval_)
def from_param(cls, e):
check_enum(e, Transaction.SubType, 'argument')
return int(e)
from_param = classmethod(from_param)
class Status(Enum):
unknown = -1 # unknown
none = 0 # No status.
accepted = 1 # The transfer has been accepted by the bank
rejected = 2 # The transfer has been rejected by the bank (or was errornous)
pending = 3 # The transfer is still pending.
class StatusAdapter(c_int):
def _check_retval_(i):
return Transaction.Status(i)
_check_retval_ = staticmethod(_check_retval_)
def from_param(cls, e):
check_enum(e, Transaction.Status, 'argument')
return int(e)
from_param = classmethod(from_param)
class Charge(Enum):
unknown = -1 # unknown
Nobody = 0 # Nobody is to be charged.
local = 1 # Issuer is to be charged.
remote = 2 # Peer is to be charged.
share = 3 # Issuer and peer share the charges.
class ChargeAdapter(c_int):
def _check_retval_(i):
return Transaction.Charge(i)
_check_retval_ = staticmethod(_check_retval_)
def from_param(cls, e):
check_enum(e, Transaction.Charge, 'argument')
return int(e)
from_param = classmethod(from_param)
modified = property(
aqb.AB_Transaction_IsModified,
aqb.AB_Transaction_SetModified)
# Group Local Account Info
# This group contains information about the local account.
# Functions of this group are also available in AB_SPLIT, please
# make your application check for splits first and use the values here
# as a fallback.
# This is the two-character country code according to ISO
# 3166-1 (Alpha-2). This is also used in DNS toplevel domain
# names. For Germany use "DE" (not case-sensitive).
# This is the code of the local bank (i.e. your bank).
# This is the branch id of the local bank (OFX only)
# If your account has subaccounts which are distinguished by
# different suffixes, then this is that suffix. Otherwise it's
# empty. (HBCI only)
localCountry = property(
aqb.AB_Transaction_GetLocalCountry,
aqb.AB_Transaction_SetLocalCountry,
'This is the two-character country code according to ISO\n'
'3166-1 (Alpha-2). This is also used in DNS toplevel domain\n'
'names. For Germany use "DE" (not case-sensitive).')
localBankCode = property(
aqb.AB_Transaction_GetLocalBankCode,
aqb.AB_Transaction_SetLocalBankCode,
'This is the code of the local bank (i.e. your bank).')
localBranchId = property(
aqb.AB_Transaction_GetLocalBranchId,
aqb.AB_Transaction_SetLocalBranchId,
'This is the branch id of the local bank (OFX only)')
localAccountNumber = property(
aqb.AB_Transaction_GetLocalAccountNumber,
aqb.AB_Transaction_SetLocalAccountNumber)
localSuffix = property(
aqb.AB_Transaction_GetLocalSuffix,
aqb.AB_Transaction_SetLocalSuffix,
'If your account has subaccounts which are distinguished by\n'
'different suffixes, then this is that suffix. Otherwise it\'s\n'
'empty. (HBCI only)')
localName = property(
aqb.AB_Transaction_GetLocalName,
aqb.AB_Transaction_SetLocalName)
# Group Remote Account Info
# This group contains information about the remote account.
# Functions of this group are also available in AB_SPLIT, please
# make your application check for splits first and use the values here
# as a fallback.
# This is the two-character ISO country code (as used in toplevel
# domains). For Germany use "DE".
# This is the branch id of the remote bank (OFX only)
# International Bank Account Number according to ECBS EBS 204.
# PosMeaning
# 0-1Country code according to ISO 3166
# 2-3Checksum
# 4-33Country specific account info
# Examples:
# BE62510007547061
# FR1420041010050500013M02606
remoteCountry = property(
aqb.AB_Transaction_GetRemoteCountry,
aqb.AB_Transaction_SetRemoteCountry,
'This is the two-character ISO country code (as used in toplevel\n'
'domains). For Germany use "DE".')
remoteBankName = property(
aqb.AB_Transaction_GetRemoteBankName,
aqb.AB_Transaction_SetRemoteBankName)
remoteBankLocation = property(
aqb.AB_Transaction_GetRemoteBankLocation,
aqb.AB_Transaction_SetRemoteBankLocation)
remoteBankCode = property(
aqb.AB_Transaction_GetRemoteBankCode,
aqb.AB_Transaction_SetRemoteBankCode)
remoteBranchId = property(
aqb.AB_Transaction_GetRemoteBranchId,
aqb.AB_Transaction_SetRemoteBranchId,
'This is the branch id of the remote bank (OFX only)')
remoteAccountNumber = property(
aqb.AB_Transaction_GetRemoteAccountNumber,
aqb.AB_Transaction_SetRemoteAccountNumber)
remoteSuffix = property(
aqb.AB_Transaction_GetRemoteSuffix,
aqb.AB_Transaction_SetRemoteSuffix)
remoteIban = property(
aqb.AB_Transaction_GetRemoteIban,
aqb.AB_Transaction_SetRemoteIban,
'International Bank Account Number according to ECBS EBS 204.\n'
'PosMeaning\n'
'0-1Country code according to ISO 3166\n'
'2-3Checksum\n'
'4-33Country specific account info\n'
'Examples:\n'
'BE62510007547061\n'
'FR1420041010050500013M02606')
remoteName = property(
aqb.AB_Transaction_GetRemoteName,
lambda self, v: aqb.AB_Transaction_SetRemoteName(self, makeStringlist(v)))
uniqueId = property(
aqb.AB_Transaction_GetUniqueId,
aqb.AB_Transaction_SetUniqueId,
'This is a unique id assigned by the application. However, when\n'
'adding a transaction to a job (like JobTransfer) this id is\n'
'assigned by AqBanking to make sure that this id is unique across\n'
'all applications.')
# Group Dates
# The date when the transaction was really executed
# (Datum Valuta/Wertstellung)
# The date when the transaction was booked (but sometimes it is
# unused). (Buchungsdatum)
valutaDate = property(
aqb.AB_Transaction_GetValutaDate,
aqb.AB_Transaction_SetValutaDate,
'The date when the transaction was really executed\n'
'(Datum Valuta/Wertstellung)')
date = property(
aqb.AB_Transaction_GetDate,
aqb.AB_Transaction_SetDate,
'The date when the transaction was booked (but sometimes it is\n'
'unused). (Buchungsdatum)')
# Group Value
# Functions of this group are also available in AB_SPLIT, please
# make your application check for splits first and use the values here
# as a fallback.
value = property(
aqb.AB_Transaction_GetValue,
aqb.AB_Transaction_SetValue)
fees = property(
aqb.AB_Transaction_GetFees,
aqb.AB_Transaction_SetFees)
splits = property(
aqb.AB_Transaction_GetSplits,
lambda self, v: aqb.AB_Transaction_SetSplits(self, makeSplitlist(v)))
# Group Info Which Is Not Supported by All Backends
# This group contains information which differ between backends.
# Some of this information might not even be supported by every
# backends.
# A numerical transaction code, defined for all kinds of
# different actions. (Textschluessel)
# For a normal transfer you should set it to 51. For debit notes
# the values 04 or 05 may be used. For other values please refer to
# your credit institute. (HBCI only)
# this is the transaction id that tells you more about the type
# of transaction (3 character code) (Buchungsschluessel)
# (HBCI only)
# Reference string, if the customer (you) has specified
# one. (E.g. the cheque number.) Otherwise "NONREF" or empty
# (Kundenreferenz)
# Reference string for this transaction given by the bank, if it
# has given one. Otherwise empty. (Bankreferenz)
# A 3 digit numerical transaction code, defined for all kinds of
# different actions. (Geschaeftsvorfallcode)
# Transaction text (e.g. STANDING ORDER) (Buchungstext)
# This is an id optionally assigned by the Financial
# Institute. It is mostly used by OFX.
# This string list contains the purpose of the transaction.
# Every entry of this list represents a single purpose line.
# This string list contains the categories this transaction
# belongs to. This element is not used by AqBanking itself but
# some im/exporter plugins may choose to use these.
textKey = property(
aqb.AB_Transaction_GetTextKey,
aqb.AB_Transaction_SetTextKey,
'A numerical transaction code, defined for all kinds of\n'
'different actions. (Textschluessel)\n'
'For a normal transfer you should set it to 51. For debit notes\n'
'the values 04 or 05 may be used. For other values please refer to\n'
'your credit institute. (HBCI only)')
transactionKey = property(
aqb.AB_Transaction_GetTransactionKey,
aqb.AB_Transaction_SetTransactionKey,
'this is the transaction id that tells you more about the type\n'
'of transaction (3 character code) (Buchungsschluessel)\n'
'(HBCI only)')
customerReference = property(
aqb.AB_Transaction_GetCustomerReference,
aqb.AB_Transaction_SetCustomerReference,
'Reference string, if the customer (you) has specified\n'
'one. (E.g. the cheque number.) Otherwise "NONREF" or empty\n'
'(Kundenreferenz)')
bankReference = property(
aqb.AB_Transaction_GetBankReference,
aqb.AB_Transaction_SetBankReference,
'Reference string for this transaction given by the bank, if it\n'
'has given one. Otherwise empty. (Bankreferenz)')
transactionCode = property(
aqb.AB_Transaction_GetTransactionCode,
aqb.AB_Transaction_SetTransactionCode,
'A 3 digit numerical transaction code, defined for all kinds of\n'
'different actions. (Geschaeftsvorfallcode)')
transactionText = property(
aqb.AB_Transaction_GetTransactionText,
aqb.AB_Transaction_SetTransactionText,
'Transaction text (e.g. STANDING ORDER) (Buchungstext)')
primanota = property(
aqb.AB_Transaction_GetPrimanota,
aqb.AB_Transaction_SetPrimanota)
fiId = property(
aqb.AB_Transaction_GetFiId,
aqb.AB_Transaction_SetFiId,
'This is an id optionally assigned by the Financial\n'
'Institute. It is mostly used by OFX.')
purpose = property(
aqb.AB_Transaction_GetPurpose,
lambda self, v: aqb.AB_Transaction_SetPurpose(self, makeStringlist(v)))
category = property(
aqb.AB_Transaction_GetCategory,
lambda self, v: aqb.AB_Transaction_SetCategory(self, makeStringlist(v)))
# Group Additional Information for Standing Orders
# This group contains information which is used with standing orders.
# It is not needed for other usage of this type.
# This variable contains the execution period (e.g. whether a standing
# order is to be executed weekly or monthly etc).
# The standing order is executed every cycle x period.
# So if period is weekly and cycle is 2
# then the standing order is executed every 2 weeks.
# The execution day. The meaning of this variable depends on the
# content of period:
# monthly: day of the month (starting with 1)
# weekly: day of the week (starting with 1=Monday)
# The date when the standing order is to be executed for the first
# time.
# The date when the standing order is to be executed for the last
# time.
# The date when the standing order is to be executed next (this field
# is only interesting when retrieving the list of currently active
# standing orders)
period = property(
aqb.AB_Transaction_GetPeriod,
aqb.AB_Transaction_SetPeriod,
'This variable contains the execution period (e.g. whether a standing\n'
'order is to be executed weekly or monthly etc).')
cycle = property(
aqb.AB_Transaction_GetCycle,
aqb.AB_Transaction_SetCycle,
'The standing order is executed every cycle x period.\n'
'So if period is weekly and cycle is 2\n'
'then the standing order is executed every 2 weeks.')
executionDay = property(
aqb.AB_Transaction_GetExecutionDay,
aqb.AB_Transaction_SetExecutionDay,
'The execution day. The meaning of this variable depends on the\n'
'content of period:\n'
'monthly: day of the month (starting with 1)\n'
'weekly: day of the week (starting with 1=Monday)')
firstExecutionDate = property(
aqb.AB_Transaction_GetFirstExecutionDate,
aqb.AB_Transaction_SetFirstExecutionDate,
'The date when the standing order is to be executed for the first\n'
'time.')
lastExecutionDate = property(
aqb.AB_Transaction_GetLastExecutionDate,
aqb.AB_Transaction_SetLastExecutionDate,
'The date when the standing order is to be executed for the last\n'
'time.')
nextExecutionDate = property(
aqb.AB_Transaction_GetNextExecutionDate,
aqb.AB_Transaction_SetNextExecutionDate,
'The date when the standing order is to be executed next (this field\n'
'is only interesting when retrieving the list of currently active\n'
'standing orders)')
# Group Additional Information for Transfers
# This group contains information which is used with all kinds of
# transfers.
# It is setup by the function @ref AB_Banking_GatherResponses for
# transfers but not used by AqBanking otherwise.
# This variable contains the type of transfer (transfer, debit note
# etc).
# This variable contains the sub-type of transfer.
# This variable contains the status of the transfer (accepted,
# rejected, pending).
# etc).
# Specify who is to be charged for the transaction.
type = property(
aqb.AB_Transaction_GetType,
aqb.AB_Transaction_SetType,
'This variable contains the type of transfer (transfer, debit note\n'
'etc).')
subType = property(
aqb.AB_Transaction_GetSubType,
aqb.AB_Transaction_SetSubType,
'This variable contains the sub-type of transfer.')
status = property(
aqb.AB_Transaction_GetStatus,
aqb.AB_Transaction_SetStatus,
'This variable contains the status of the transfer (accepted,\n'
'rejected, pending).\n'
'etc).')
charge = property(
aqb.AB_Transaction_GetCharge,
aqb.AB_Transaction_SetCharge,
'Specify who is to be charged for the transaction.')
# Group Additional Information for Foreign Transfers
# This group contains information which is used with transfers to
# other countries in the world.
# It is used by backends and applications but not by AqBanking itself.
remoteAddrStreet = property(
aqb.AB_Transaction_GetRemoteAddrStreet,
aqb.AB_Transaction_SetRemoteAddrStreet)
remoteAddrZipcode = property(
aqb.AB_Transaction_GetRemoteAddrZipcode,
aqb.AB_Transaction_SetRemoteAddrZipcode)
remoteAddrCity = property(
aqb.AB_Transaction_GetRemoteAddrCity,
aqb.AB_Transaction_SetRemoteAddrCity)
remotePhone = property(
aqb.AB_Transaction_GetRemotePhone,
aqb.AB_Transaction_SetRemotePhone)
# Group Additional Information for Investment Transfers
# This group contains information which is used with investment/stock
# transfers.
# It is used by backends and applications but not by AqBanking itself.
units = property(
aqb.AB_Transaction_GetUnits,
aqb.AB_Transaction_SetUnits)
unitPrice = property(
aqb.AB_Transaction_GetUnitPrice,
aqb.AB_Transaction_SetUnitPrice)
def __str__(self):
return "<class Transaction:\nmodified=%s\nlocalCountry=%s\nlocalBankCode=%s\nlocalBranchId=%s\nlocalAccountNumber=%s\nlocalSuffix=%s\nlocalName=%s\nremoteCountry=%s\nremoteBankName=%s\nremoteBankLocation=%s\nremoteBankCode=%s\nremoteBranchId=%s\nremoteAccountNumber=%s\nremoteSuffix=%s\nremoteIban=%s\nremoteName=%s\nuniqueId=%s\nvalutaDate=%s\ndate=%s\nvalue=%s\nfees=%s\nsplits=%s\ntextKey=%s\ntransactionKey=%s\ncustomerReference=%s\nbankReference=%s\ntransactionCode=%s\ntransactionText=%s\nprimanota=%s\nfiId=%s\npurpose=%s\ncategory=%s\nperiod=%s\ncycle=%s\nexecutionDay=%s\nfirstExecutionDate=%s\nlastExecutionDate=%s\nnextExecutionDate=%s\ntype=%s\nsubType=%s\nstatus=%s\ncharge=%s\nremoteAddrStreet=%s\nremoteAddrZipcode=%s\nremoteAddrCity=%s\nremotePhone=%s\nunits=%s\nunitPrice=%s\n/Transaction>" % (self.modified,self.localCountry,self.localBankCode,self.localBranchId,self.localAccountNumber,self.localSuffix,self.localName,self.remoteCountry,self.remoteBankName,self.remoteBankLocation,self.remoteBankCode,self.remoteBranchId,self.remoteAccountNumber,self.remoteSuffix,self.remoteIban,self.remoteName,self.uniqueId,self.valutaDate,self.date,self.value,self.fees,self.splits,self.textKey,self.transactionKey,self.customerReference,self.bankReference,self.transactionCode,self.transactionText,self.primanota,self.fiId,self.purpose,self.category,self.period,self.cycle,self.executionDay,self.firstExecutionDate,self.lastExecutionDate,self.nextExecutionDate,self.type,self.subType,self.status,self.charge,self.remoteAddrStreet,self.remoteAddrZipcode,self.remoteAddrCity,self.remotePhone,self.units,self.unitPrice)
# list helpers
def makeStringlist(v):
if v is None:
return None
sl = gwen.GWEN_StringList_new()
for s in v:
se = gwen.GWEN_StringListEntry_new(s, False)
gwen.GWEN_StringList_AppendEntry(sl, se)
return sl
def tupleStringlist(sl):
if not sl:
return ()
l = []
e = gwen.GWEN_StringList_FirstEntry(sl)
while e:
l.append(gwen.GWEN_StringListEntry_Data(e))
e = gwen.GWEN_StringListEntry_Next(e)
return tuple(l)
gwen.GWEN_StringListEntry_new.argtypes = c_char_p, c_int
gwen.GWEN_StringListEntry_Data.restype = c_char_p
def makeBankInfoServicelist(v):
if v is None:
return None
sl = aqb.AB_BankInfoService_List_new()
for s in v:
aqb.AB_BankInfoService_List_Add(s, c_void_p(sl))
return sl
def tupleBankInfoServicelist(sl):
if not sl:
return ()
e = aqb.AB_BankInfoService_List_First(sl)
l = []
while e:
l.append(BankInfoService._check_retval_(e))
e = aqb.AB_BankInfoService_List_Next(e)
return tuple(l)
aqb.AB_BankInfoService_List_Add.argtypes = BankInfoService, c_void_p
def makeSplitlist(v):
if v is None:
return None
sl = aqb.AB_Split_List_new()
for s in v:
aqb.AB_Split_List_Add(s, c_void_p(sl))
return sl
def tupleSplitlist(sl):
if not sl:
return ()
e = aqb.AB_Split_List_First(sl)
l = []
while e:
l.append(Split._check_retval_(e))
e = aqb.AB_Split_List_Next(e)
return tuple(l)
aqb.AB_Split_List_Add.argtypes = Split, c_void_p
def makeTransactionLimitslist(v):
if v is None:
return None
sl = aqb.AB_TransactionLimits_List_new()
for s in v:
aqb.AB_TransactionLimits_List_Add(s, c_void_p(sl))
return sl
def tupleTransactionLimitslist(sl):
if not sl:
return ()
e = aqb.AB_TransactionLimits_List_First(sl)
l = []
while e:
l.append(TransactionLimits._check_retval_(e))
e = aqb.AB_TransactionLimits_List_Next(e)
return tuple(l)
aqb.AB_TransactionLimits_List_Add.argtypes = TransactionLimits, c_void_p
# Pin
#aqb.AB_Pin_IsModified.restype = c_int
#aqb.AB_Pin_SetModified.argtypes = Pin, c_int
aqb.AB_Pin_GetToken.restype = c_char_p
aqb.AB_Pin_SetToken.argtypes = Pin, c_char_p
aqb.AB_Pin_GetValue.restype = c_char_p
aqb.AB_Pin_SetValue.argtypes = Pin, c_char_p
aqb.AB_Pin_GetHash.restype = c_char_p
aqb.AB_Pin_SetHash.argtypes = Pin, c_char_p
aqb.AB_Pin_GetStatus.restype = c_char_p
aqb.AB_Pin_SetStatus.argtypes = Pin, c_char_p
# EuTransferInfo
aqb.AB_EuTransferInfo_IsModified.restype = c_int
aqb.AB_EuTransferInfo_SetModified.argtypes = EuTransferInfo, c_int
aqb.AB_EuTransferInfo_GetCountryCode.restype = c_char_p
aqb.AB_EuTransferInfo_SetCountryCode.argtypes = EuTransferInfo, c_char_p
aqb.AB_EuTransferInfo_GetFieldLimits.restype = tupleTransactionLimitslist
aqb.AB_EuTransferInfo_GetLimitLocalValue.restype = Value
aqb.AB_EuTransferInfo_SetLimitLocalValue.argtypes = EuTransferInfo, Value
aqb.AB_EuTransferInfo_GetLimitForeignValue.restype = Value
aqb.AB_EuTransferInfo_SetLimitForeignValue.argtypes = EuTransferInfo, Value
# BankInfo
aqb.AB_BankInfo_IsModified.restype = c_int
aqb.AB_BankInfo_SetModified.argtypes = BankInfo, c_int
aqb.AB_BankInfo_GetCountry.restype = c_char_p
aqb.AB_BankInfo_SetCountry.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetBranchId.restype = c_char_p
aqb.AB_BankInfo_SetBranchId.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetBankId.restype = c_char_p
aqb.AB_BankInfo_SetBankId.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetBic.restype = c_char_p
aqb.AB_BankInfo_SetBic.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetBankName.restype = c_char_p
aqb.AB_BankInfo_SetBankName.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetLocation.restype = c_char_p
aqb.AB_BankInfo_SetLocation.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetStreet.restype = c_char_p
aqb.AB_BankInfo_SetStreet.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetZipcode.restype = c_char_p
aqb.AB_BankInfo_SetZipcode.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetCity.restype = c_char_p
aqb.AB_BankInfo_SetCity.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetRegion.restype = c_char_p
aqb.AB_BankInfo_SetRegion.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetPhone.restype = c_char_p
aqb.AB_BankInfo_SetPhone.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetFax.restype = c_char_p
aqb.AB_BankInfo_SetFax.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetEmail.restype = c_char_p
aqb.AB_BankInfo_SetEmail.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetWebsite.restype = c_char_p
aqb.AB_BankInfo_SetWebsite.argtypes = BankInfo, c_char_p
aqb.AB_BankInfo_GetServices.restype = tupleBankInfoServicelist
# Transaction
aqb.AB_Transaction_IsModified.restype = c_int
aqb.AB_Transaction_SetModified.argtypes = Transaction, c_int
aqb.AB_Transaction_GetLocalCountry.restype = c_char_p
aqb.AB_Transaction_SetLocalCountry.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetLocalBankCode.restype = c_char_p
aqb.AB_Transaction_SetLocalBankCode.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetLocalBranchId.restype = c_char_p
aqb.AB_Transaction_SetLocalBranchId.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetLocalAccountNumber.restype = c_char_p
aqb.AB_Transaction_SetLocalAccountNumber.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetLocalSuffix.restype = c_char_p
aqb.AB_Transaction_SetLocalSuffix.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetLocalName.restype = c_char_p
aqb.AB_Transaction_SetLocalName.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteCountry.restype = c_char_p
aqb.AB_Transaction_SetRemoteCountry.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteBankName.restype = c_char_p
aqb.AB_Transaction_SetRemoteBankName.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteBankLocation.restype = c_char_p
aqb.AB_Transaction_SetRemoteBankLocation.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteBankCode.restype = c_char_p
aqb.AB_Transaction_SetRemoteBankCode.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteBranchId.restype = c_char_p
aqb.AB_Transaction_SetRemoteBranchId.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteAccountNumber.restype = c_char_p
aqb.AB_Transaction_SetRemoteAccountNumber.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteSuffix.restype = c_char_p
aqb.AB_Transaction_SetRemoteSuffix.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteIban.restype = c_char_p
aqb.AB_Transaction_SetRemoteIban.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteName.restype = tupleStringlist
aqb.AB_Transaction_GetUniqueId.restype = c_int
aqb.AB_Transaction_SetUniqueId.argtypes = Transaction, c_int
aqb.AB_Transaction_GetValutaDate.restype = GWEN_Time
aqb.AB_Transaction_SetValutaDate.argtypes = Transaction, GWEN_Time
aqb.AB_Transaction_GetDate.restype = GWEN_Time
aqb.AB_Transaction_SetDate.argtypes = Transaction, GWEN_Time
aqb.AB_Transaction_GetValue.restype = Value
aqb.AB_Transaction_SetValue.argtypes = Transaction, Value
aqb.AB_Transaction_GetFees.restype = Value
aqb.AB_Transaction_SetFees.argtypes = Transaction, Value
aqb.AB_Transaction_GetSplits.restype = tupleSplitlist
aqb.AB_Transaction_GetTextKey.restype = c_int
aqb.AB_Transaction_SetTextKey.argtypes = Transaction, c_int
aqb.AB_Transaction_GetTransactionKey.restype = c_char_p
aqb.AB_Transaction_SetTransactionKey.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetCustomerReference.restype = c_char_p
aqb.AB_Transaction_SetCustomerReference.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetBankReference.restype = c_char_p
aqb.AB_Transaction_SetBankReference.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetTransactionCode.restype = c_int
aqb.AB_Transaction_SetTransactionCode.argtypes = Transaction, c_int
aqb.AB_Transaction_GetTransactionText.restype = c_char_p
aqb.AB_Transaction_SetTransactionText.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetPrimanota.restype = c_char_p
aqb.AB_Transaction_SetPrimanota.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetFiId.restype = c_char_p
aqb.AB_Transaction_SetFiId.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetPurpose.restype = tupleStringlist
aqb.AB_Transaction_GetCategory.restype = tupleStringlist
aqb.AB_Transaction_GetPeriod.restype = Transaction.PeriodAdapter
aqb.AB_Transaction_SetPeriod.argtypes = Transaction, Transaction.PeriodAdapter
aqb.AB_Transaction_GetCycle.restype = c_int
aqb.AB_Transaction_SetCycle.argtypes = Transaction, c_int
aqb.AB_Transaction_GetExecutionDay.restype = c_int
aqb.AB_Transaction_SetExecutionDay.argtypes = Transaction, c_int
aqb.AB_Transaction_GetFirstExecutionDate.restype = GWEN_Time
aqb.AB_Transaction_SetFirstExecutionDate.argtypes = Transaction, GWEN_Time
aqb.AB_Transaction_GetLastExecutionDate.restype = GWEN_Time
aqb.AB_Transaction_SetLastExecutionDate.argtypes = Transaction, GWEN_Time
aqb.AB_Transaction_GetNextExecutionDate.restype = GWEN_Time
aqb.AB_Transaction_SetNextExecutionDate.argtypes = Transaction, GWEN_Time
aqb.AB_Transaction_GetType.restype = Transaction.TypeAdapter
aqb.AB_Transaction_SetType.argtypes = Transaction, Transaction.TypeAdapter
aqb.AB_Transaction_GetSubType.restype = Transaction.SubTypeAdapter
aqb.AB_Transaction_SetSubType.argtypes = Transaction, Transaction.SubTypeAdapter
aqb.AB_Transaction_GetStatus.restype = Transaction.StatusAdapter
aqb.AB_Transaction_SetStatus.argtypes = Transaction, Transaction.StatusAdapter
aqb.AB_Transaction_GetCharge.restype = Transaction.ChargeAdapter
aqb.AB_Transaction_SetCharge.argtypes = Transaction, Transaction.ChargeAdapter
aqb.AB_Transaction_GetRemoteAddrStreet.restype = c_char_p
aqb.AB_Transaction_SetRemoteAddrStreet.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteAddrZipcode.restype = c_char_p
aqb.AB_Transaction_SetRemoteAddrZipcode.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemoteAddrCity.restype = c_char_p
aqb.AB_Transaction_SetRemoteAddrCity.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetRemotePhone.restype = c_char_p
aqb.AB_Transaction_SetRemotePhone.argtypes = Transaction, c_char_p
aqb.AB_Transaction_GetUnits.restype = c_int
aqb.AB_Transaction_SetUnits.argtypes = Transaction, c_int
aqb.AB_Transaction_GetUnitPrice.restype = Value
aqb.AB_Transaction_SetUnitPrice.argtypes = Transaction, Value
# Split
aqb.AB_Split_IsModified.restype = c_int
aqb.AB_Split_SetModified.argtypes = Split, c_int
aqb.AB_Split_GetCountry.restype = c_char_p
aqb.AB_Split_SetCountry.argtypes = Split, c_char_p
aqb.AB_Split_GetBankCode.restype = c_char_p
aqb.AB_Split_SetBankCode.argtypes = Split, c_char_p
aqb.AB_Split_GetBranchId.restype = c_char_p
aqb.AB_Split_SetBranchId.argtypes = Split, c_char_p
aqb.AB_Split_GetAccountNumber.restype = c_char_p
aqb.AB_Split_SetAccountNumber.argtypes = Split, c_char_p
aqb.AB_Split_GetSuffix.restype = c_char_p
aqb.AB_Split_SetSuffix.argtypes = Split, c_char_p
aqb.AB_Split_GetName.restype = tupleStringlist
aqb.AB_Split_GetValue.restype = Value
aqb.AB_Split_SetValue.argtypes = Split, Value
aqb.AB_Split_GetPurpose.restype = tupleStringlist
aqb.AB_Split_GetCategory.restype = tupleStringlist
# BankInfoService
aqb.AB_BankInfoService_IsModified.restype = c_int
aqb.AB_BankInfoService_SetModified.argtypes = BankInfoService, c_int
aqb.AB_BankInfoService_GetType.restype = c_char_p
aqb.AB_BankInfoService_SetType.argtypes = BankInfoService, c_char_p
aqb.AB_BankInfoService_GetAddress.restype = c_char_p
aqb.AB_BankInfoService_SetAddress.argtypes = BankInfoService, c_char_p
aqb.AB_BankInfoService_GetSuffix.restype = c_char_p
aqb.AB_BankInfoService_SetSuffix.argtypes = BankInfoService, c_char_p
aqb.AB_BankInfoService_GetPversion.restype = c_char_p
aqb.AB_BankInfoService_SetPversion.argtypes = BankInfoService, c_char_p
aqb.AB_BankInfoService_GetMode.restype = c_char_p
aqb.AB_BankInfoService_SetMode.argtypes = BankInfoService, c_char_p
aqb.AB_BankInfoService_GetAux1.restype = c_char_p
aqb.AB_BankInfoService_SetAux1.argtypes = BankInfoService, c_char_p
aqb.AB_BankInfoService_GetAux2.restype = c_char_p
aqb.AB_BankInfoService_SetAux2.argtypes = BankInfoService, c_char_p
# TransactionLimits
aqb.AB_TransactionLimits_IsModified.restype = c_int
aqb.AB_TransactionLimits_SetModified.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenLocalName.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenLocalName.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenLocalName.restype = c_int
aqb.AB_TransactionLimits_SetMinLenLocalName.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenRemoteName.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenRemoteName.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenRemoteName.restype = c_int
aqb.AB_TransactionLimits_SetMinLenRemoteName.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLinesRemoteName.restype = c_int
aqb.AB_TransactionLimits_SetMaxLinesRemoteName.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLinesRemoteName.restype = c_int
aqb.AB_TransactionLimits_SetMinLinesRemoteName.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenLocalBankCode.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenLocalBankCode.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenLocalBankCode.restype = c_int
aqb.AB_TransactionLimits_SetMinLenLocalBankCode.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenLocalAccountNumber.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenLocalAccountNumber.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenLocalAccountNumber.restype = c_int
aqb.AB_TransactionLimits_SetMinLenLocalAccountNumber.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenLocalSuffix.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenLocalSuffix.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenLocalSuffix.restype = c_int
aqb.AB_TransactionLimits_SetMinLenLocalSuffix.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenRemoteBankCode.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenRemoteBankCode.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenRemoteBankCode.restype = c_int
aqb.AB_TransactionLimits_SetMinLenRemoteBankCode.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenRemoteAccountNumber.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenRemoteAccountNumber.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenRemoteAccountNumber.restype = c_int
aqb.AB_TransactionLimits_SetMinLenRemoteAccountNumber.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenRemoteSuffix.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenRemoteSuffix.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenRemoteSuffix.restype = c_int
aqb.AB_TransactionLimits_SetMinLenRemoteSuffix.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenRemoteIban.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenRemoteIban.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenRemoteIban.restype = c_int
aqb.AB_TransactionLimits_SetMinLenRemoteIban.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenTextKey.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenTextKey.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenTextKey.restype = c_int
aqb.AB_TransactionLimits_SetMinLenTextKey.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetValuesTextKey.restype = tupleStringlist
aqb.AB_TransactionLimits_GetMaxLenCustomerReference.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenCustomerReference.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenCustomerReference.restype = c_int
aqb.AB_TransactionLimits_SetMinLenCustomerReference.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenBankReference.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenBankReference.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenBankReference.restype = c_int
aqb.AB_TransactionLimits_SetMinLenBankReference.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLenPurpose.restype = c_int
aqb.AB_TransactionLimits_SetMaxLenPurpose.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLenPurpose.restype = c_int
aqb.AB_TransactionLimits_SetMinLenPurpose.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxLinesPurpose.restype = c_int
aqb.AB_TransactionLimits_SetMaxLinesPurpose.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinLinesPurpose.restype = c_int
aqb.AB_TransactionLimits_SetMinLinesPurpose.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMinValueSetupTime.restype = c_int
aqb.AB_TransactionLimits_SetMinValueSetupTime.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetMaxValueSetupTime.restype = c_int
aqb.AB_TransactionLimits_SetMaxValueSetupTime.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetValuesCycleWeek.restype = tupleStringlist
aqb.AB_TransactionLimits_GetValuesCycleMonth.restype = tupleStringlist
aqb.AB_TransactionLimits_GetValuesExecutionDayWeek.restype = tupleStringlist
aqb.AB_TransactionLimits_GetValuesExecutionDayMonth.restype = tupleStringlist
aqb.AB_TransactionLimits_GetAllowMonthly.restype = c_int
aqb.AB_TransactionLimits_SetAllowMonthly.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowWeekly.restype = c_int
aqb.AB_TransactionLimits_SetAllowWeekly.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeRecipientAccount.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeRecipientAccount.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeRecipientName.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeRecipientName.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeValue.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeValue.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeTextKey.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeTextKey.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangePurpose.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangePurpose.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeFirstExecutionDate.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeFirstExecutionDate.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeLastExecutionDate.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeLastExecutionDate.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeCycle.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeCycle.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangePeriod.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangePeriod.argtypes = TransactionLimits, c_int
aqb.AB_TransactionLimits_GetAllowChangeExecutionDay.restype = c_int
aqb.AB_TransactionLimits_SetAllowChangeExecutionDay.argtypes = TransactionLimits, c_int
|