name = $name; $this->reference = $reference; $this->unity_hash_id = $unity_hash_id; $this->unity_signature = $unity_signature; $this->type = $type; $this->status = $status; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getReference(): string { return $this->reference; } /** * @return string */ public function getUnityHashId(): string { return $this->unity_hash_id; } /** * @return string */ public function getUnitySignature(): string { return $this->unity_signature; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return int */ public function getStatus(): int { return $this->status; } }