for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace POData\ObjectModel;
class ODataCategory
{
/**
* Term.
*
* @var string
*/
public $term;
* Scheme
public $scheme;
public function __construct($term, $scheme = 'http://schemas.microsoft.com/ado/2007/08/dataservices/scheme')
$this->term = $term;
$this->scheme = $scheme;
}