payment.method :: Payment Method

Main super-class for regular database-persisted Odoo models. Odoo models are created by inheriting from this class:: class user(Model): ... The system will later instantiate the class once per database (on which the class' module is installed).

Fields

  • active [boolean]: Active

  • brand_ids [one2many: payment.method]: Brands

  • code [requiredchar]: Code

  • create_date [readonlydatetime]: Created on

  • create_uid [readonlymany2one: res.users]: Created by

  • display_name [readonlychar]: Display Name

  • id [readonlyinteger]: ID

  • image [requiredbinary]: Image

  • image_payment_form [readonlybinary]: The resized image displayed on the payment form.

  • is_primary [readonlyboolean]: Is Primary Payment Method

  • name [requiredchar]: Name

  • primary_payment_method_id [many2one: payment.method]: Primary Payment Method

  • provider_ids [many2many: payment.provider]: Providers

  • sequence [integer]: Sequence

  • support_express_checkout [boolean]: Express Checkout

  • support_refund [requiredselection]: Refund

  • support_tokenization [boolean]: Tokenization

  • supported_country_ids [many2many: res.country]: Countries

  • supported_currency_ids [many2many: res.currency]: Currencies

  • write_date [readonlydatetime]: Last Updated on

  • write_uid [readonlymany2one: res.users]: Last Updated by