*/ final class UpdateClickTrackingResponse implements ApiResponse { private $message; private $click; public static function create(array $data): self { $model = new self(); $model->message = $data['message'] ?? null; $model->click = ClickTracking::create($data['click'] ?? []); return $model; } private function __construct() { } public function getMessage(): ?string { return $this->message; } public function getClick(): ClickTracking { return $this->click; } }