26 use GetTypeIdFromConstTrait;
28 public const ID = DataStoreOperationType::REMOVAL;
30 public function __construct(
34 public function getName() :
string{
return $this->name; }
36 public static function read(ByteBufferReader $in) :
self{
37 $name = CommonTypes::getString($in);
44 public function write(ByteBufferWriter $out) :
void{
45 CommonTypes::putString($out, $this->name);