Rev 1 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
declare(strict_types=1);
namespace LeadersLinked\Model;
class Notification
{
const YES = 'y';
const NO = 'n';
const TYPE_RECEIVE_CONNECTION_REQUEST = 'receive-connection-request';
const TYPE_ACCEPT_MY_REQUEST_CONNECTION = 'accept-my-request-connection';
const TYPE_RECEIVE_INVITATION_GROUP = 'receive-invitation-group';
const TYPE_ACCEPT_MY_REQUEST_JOIN_GROUP = 'accept-my-request-join-group';
const TYPE_RECEIVE_REQUEST_JOIN_MY_GROUP = 'receive-request-join-my-group';
const TYPE_RECEIVE_INVITATION_COMPANY = 'receive-invitation-company';
const TYPE_LIKE_MY_FEED = 'like-my-feed';
const TYPE_COMMENT_MY_FEED = 'comment-my-feed';
const TYPE_SHARE_MY_FEED = 'share-my-feed';
/**
*
* @var int
*/
public $id;
/**
*
* @var string
*/
public $uuid;
/**
*
* @var int
*/
public $user_id;
/**
*
* @var int
*/
public $company_id;
/**
*
* @var int
*/
public $feed_id;
/**
*
* @var int
*/
public $group_id;
/**
*
* @var string
*/
public $type;
/**
*
* @var string
*/
public $read;
/**
*
* @var string
*/
public $message;
/**
*
* @var string
*/
public $url;
/**
*
* @var string
*/
public $added_on;
/**
*
* @var string
*/
public $updated_on;
}