From e33df8f1e922f4aed3506ad4187b6ceac4bdf157 Mon Sep 17 00:00:00 2001 From: PCoder Date: Sun, 16 Jul 2017 22:34:49 +0530 Subject: [PATCH] Added card holders name in UserBillingAddress to_dict function --- utils/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/models.py b/utils/models.py index c08f4008..c969a60c 100644 --- a/utils/models.py +++ b/utils/models.py @@ -32,6 +32,7 @@ class UserBillingAddress(BaseBillingAddress): def to_dict(self): return { + 'Cardholder Name': self.cardholder_name, 'Street Address': self.street_address, 'City': self.city, 'Postal Code': self.postal_code,