structure.py 504 Bytes
INQUIRY_RESP_FIELDS = (
    'Response Code',
    'Biller Name',
    'Bill Amount',
    'Bill Ref',  # Field linkaja_trx.id
    'Notification Message')

PAYMENT_RESP_FIELDS = (
    'Response Code',
    'Transaction ID',  # NTP
    'Bill Ref',  # Field linkaja_trx.inquiry_id
    'Notification Message')

METHOD = {
    '021': 'inquiry',
    '022': 'payment',
    '023': 'reversal',
    '031': 'status'}
METHOD_CODE = dict()
for key, value in METHOD.items():
    METHOD_CODE[value] = key

RENDERER = 'csv'