1: <?php
2: /**
3: * Json representation of the Manufacturer AR model.
4: *
5: * @package RestApi.Objects
6: * @author Konstantinos Filios <konfilios@gmail.com>
7: */
8: class ManufacturerJson extends CBJsonModel
9: {
10: /**
11: * Product id.
12: * @var integer
13: */
14: public $id;
15:
16: /**
17: * Product title.
18: * @var string
19: */
20: public $title;
21: }
22: