for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace POData\ObjectModel;
/**
* Class ODataTitle
* @package POData\ObjectModel
*/
class ODataTitle
{
* Title.
*
* @var string
public $title;
* Type
public $type;
public function __construct($title, $type = 'text')
$this->title = $title;
$this->type = $type;
}