1# -*- coding: utf-8 -*-
2# Part of Odoo. See LICENSE file for full copyright and licensing details.
3
4from odoo import fields, models
5
6
7class ResCompany(models.Model):
8    _inherit = "res.company"
9
10    adyen_account_id = fields.Many2one('adyen.account', string='Adyen Account', readonly=True)
11