Rev 3639 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
declare(strict_types=1);
namespace LeadersLinked\Model;
class Page
{
const TYPE_PAGE = 'p';
const TYPE_URL = 'u';
const PAGE_CODE_PRIVACY_POLICY = 'privacy-policy';
const PAGE_CODE_PROFESSIONALISM_POLICY = 'professionalism-policy';
const PAGE_CODE_COOKIES = 'cookies';
const PAGE_CODE_TERMS_AND_CONDITIONS = 'terms-and-conditions';
const STATUS_ACTIVE = 'a';
const STATUS_INACTIVE = 'i';
const YES = 'y';
const NO = 'n';
/**
*
* @var string
*/
public $id;
/**
*
* @var string
*/
public $code;
/**
*
* @var int
*/
public $network_id;
/**
*
* @var int
*/
public $page_default_id;
/**
*
* @var string
*/
public $title;
/**
*
* @var string
*/
public $content;
/**
*
* @var string
*/
public $type;
/**
*
* @var string
*/
public $url;
/**
*
* @var string
*/
public $fixed;
/**
*
* @var string
*/
public $added_on;
/**
*
* @var string
*/
public $updated_on;
/**
*
* @var string
*/
public $status;
}