2020-06-12 20:41:09 +00:00
|
|
|
<?php
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
/**
|
2020-10-06 15:39:27 +00:00
|
|
|
* Class AnalyticsPodcastsByRegion
|
|
|
|
* Entity for AnalyticsPodcastsByRegion
|
2020-06-12 20:41:09 +00:00
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
namespace App\Entities;
|
|
|
|
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
|
2020-10-06 15:39:27 +00:00
|
|
|
class AnalyticsPodcastsByRegion extends Entity
|
2020-06-12 20:41:09 +00:00
|
|
|
{
|
|
|
|
protected $casts = [
|
|
|
|
'podcast_id' => 'integer',
|
|
|
|
'country_code' => 'string',
|
2020-10-06 15:39:27 +00:00
|
|
|
'region_code' => '?string',
|
|
|
|
'latitude' => '?float',
|
|
|
|
'longitude' => '?float',
|
2020-06-12 20:41:09 +00:00
|
|
|
'date' => 'datetime',
|
|
|
|
'hits' => 'integer',
|
|
|
|
];
|
|
|
|
}
|