subscription = $subscription; $this->order = $order; $this->customer = $customer; $this->error = $error; } public function toArray(): array { return [ 'subscription' => $this->subscription ?? null, 'order' => $this->order ?? null, 'customer' => $this->customer ?? null, 'error' => $this->error ?? '', ]; } public function getActivityEventModel() { return $this->subscription; } }