Odoo18-Base/addons/payment_flutterwave/models/payment_token.py
2025-01-06 10:57:38 +07:00

12 lines
319 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class PaymentToken(models.Model):
_inherit = 'payment.token'
flutterwave_customer_email = fields.Char(
help="The email of the customer at the time the token was created.", readonly=True
)