1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/payment_flutterwave/models/payment_token.py
2024-12-10 09:04:09 +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
)