for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Adlogix package.
*
* (c) Allan Segebarth <[email protected]>
* (c) Jean-Jacques Courtens <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Adlogix\ConfluenceClient\Entity;
/**
* Class Content
* @package Adlogix\ConfluenceClient\Entity
* @author Cedric Michaux <[email protected]>
class Content
{
* @var int
private $id;
* @var string
private $type;
* @var
private $status;
private $title;
* @return int
public function getId()
return $this->id;
}
* @param int $id
* @return Content
public function setId($id)
$this->id = $id;
return $this;
* @return string
public function getType()
return $this->type;
* @param string $type
public function setType($type)
$this->type = $type;
* @return mixed
public function getStatus()
return $this->status;
* @param mixed $status
public function setStatus($status)
$this->status = $status;
public function getTitle()
return $this->title;
* @param string $title
public function setTitle($title)
$this->title = $title;