| 1 | <?php |
||
| 13 | class ArchiveMetadataAction |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var mixed $id |
||
| 18 | */ |
||
| 19 | protected $id; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var \DateTime $deletedDate |
||
| 23 | */ |
||
| 24 | protected $deletedDate; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string $command |
||
| 28 | */ |
||
| 29 | protected $command; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Get id |
||
| 33 | * |
||
| 34 | * @return string $id |
||
| 35 | */ |
||
| 36 | public function getId() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Set id |
||
| 43 | * |
||
| 44 | * @param mixed $id id |
||
| 45 | * |
||
| 46 | * @return void |
||
| 47 | */ |
||
| 48 | public function setId($id) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return \DateTime |
||
| 55 | */ |
||
| 56 | public function getDeleteddate() |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Get command |
||
| 63 | * |
||
| 64 | * @return string $command |
||
| 65 | */ |
||
| 66 | public function getCommand() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Set command |
||
| 73 | * |
||
| 74 | * @param string $command value for command |
||
| 75 | * |
||
| 76 | * @return self |
||
| 77 | */ |
||
| 78 | public function setCommand($command) |
||
| 84 | } |
||
| 85 |