* @copyright 2007-2020 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class CustomFieldsHeadings extends ObjectModel { public $id_custom_field_headings; public $title; public static $definition = array( 'table' => 'custom_field_headings', 'primary' => 'id_custom_field_headings', 'multilang' => true, 'fields' => array( 'id_custom_field_headings' => array('type' => self::TYPE_INT), 'title' => array('type' => self::TYPE_STRING, 'lang' => true), ), ); }