/**
  * @param ValueObjectInterface $other
  * @return boolean
  */
 public function sameValueAs(ValueObjectInterface $other)
 {
     if (!$other instanceof WorkflowRunId) {
         return false;
     }
     return $this->toString() === $other->toString();
 }