diff --git a/midtrans/response/response.py b/midtrans/response/response.py index 843c053..0631919 100644 --- a/midtrans/response/response.py +++ b/midtrans/response/response.py @@ -30,7 +30,10 @@ def __init__(self, validation_messages=None, page=None, total_page=None, - total_record=None): + total_record=None, + payment_amounts=None, + va_numbers=None, + currency=None): ''' Bellow are the fields that always present in any kind of response @@ -65,4 +68,7 @@ def __init__(self, self.val_messages = validation_messages self.page = page self.total_page = total_page - self.total_record = total_record \ No newline at end of file + self.total_record = total_record + self.payment_amounts = payment_amounts + self.va_numbers = va_numbers + self.currency = currency \ No newline at end of file