Rev 192 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?phpdeclare(strict_types=1);namespace LeadersLinked\Model;class AbuseReport{const REASON_SEXUALITY = 's';const REASON_OFENSIVE = 'o';const REASON_DISCRIMINATION = 'd';const REASON_ADDICTION = 'a';const REASON_TERRORISM = 't';const READON_OTHER = 'ot';const STATUS_PENDING = 'p';const STATUS_IN_REVIEW = 'r';const STATUS_COMPLETED = 'c';const TYPE_FEED = 'f';const TYPE_POST = 'p';const TYPE_INMAIL_MESSAGE = 'm';const TYPE_COMMENT = 'c';const TYPE_CHAT_USER_MESSAGE = 'cu';const TYPE_CHAT_GROUP_MESSAGE = 'cg';/**** @var int*/public $id;/**** @var int*/public $network_id;/**** @var string*/public $uuid;/**** @var int*/public $user_reporting_id;/**** @var int*/public $user_reported_id;/**** @var int*/public $related_id;/**** @var string*/public $reason;/**** @var string*/public $status;/**** @var string*/public $type;/**** @var string*/public $comment;/**** @var string*/public $review;/**** @var string*/public $added_on;/**** @var string*/public $updated_on;}