Odoo18-Base/addons/payment_flutterwave/models/payment_token.py

12 lines
319 B
Python
Raw Permalink Normal View History

2025-03-10 11:12:23 +07:00
# 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
)