*/ final class ClientL11nTypeMapper extends DataMapperFactory { /** * Columns. * * @var array * @since 1.0.0 */ public const COLUMNS = [ 'clientmgmt_client_l11n_type_id' => ['name' => 'clientmgmt_client_l11n_type_id', 'type' => 'int', 'internal' => 'id'], 'clientmgmt_client_l11n_type_title' => ['name' => 'clientmgmt_client_l11n_type_title', 'type' => 'string', 'internal' => 'title'], 'clientmgmt_client_l11n_type_required' => ['name' => 'clientmgmt_client_l11n_type_required', 'type' => 'bool', 'internal' => 'isRequired'], ]; /** * Primary table. * * @var string * @since 1.0.0 */ public const TABLE = 'clientmgmt_client_l11n_type'; /** * Primary field name. * * @var string * @since 1.0.0 */ public const PRIMARYFIELD = 'clientmgmt_client_l11n_type_id'; /** * Model to use by the mapper. * * @var class-string * @since 1.0.0 */ public const MODEL = BaseStringL11nType::class; }