| 1 | <?php |
||
| 12 | class PulseTag extends ApiObject |
||
| 13 | { |
||
| 14 | const API_PREFIX = "tags"; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $url; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var int |
||
| 23 | */ |
||
| 24 | protected $id; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $name; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $color; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var \DateTime |
||
| 38 | */ |
||
| 39 | protected $created_at; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var \DateTime |
||
| 43 | */ |
||
| 44 | protected $updated_at; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getUrl () |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return int |
||
| 58 | */ |
||
| 59 | 2 | public function getId () |
|
| 65 | |||
| 66 | /** |
||
| 67 | * @return string |
||
| 68 | */ |
||
| 69 | 2 | public function getName () |
|
| 75 | |||
| 76 | /** |
||
| 77 | * @return string |
||
| 78 | */ |
||
| 79 | 2 | public function getColor () |
|
| 85 | |||
| 86 | /** |
||
| 87 | * @return \DateTime |
||
| 88 | */ |
||
| 89 | 1 | public function getCreatedAt () |
|
| 96 | |||
| 97 | /** |
||
| 98 | * @return \DateTime |
||
| 99 | */ |
||
| 100 | 1 | public function getUpdatedAt () |
|
| 107 | } |
||
| 108 |