quantity = $quantity; $this->vendorProductIdentifier = $vendorProductIdentifier; $this->isObsolete = $isObsolete; $this->buyerProductIdentifier = $buyerProductIdentifier; } public function toArray(): array { return array_filter( [ 'buyerProductIdentifier' => $this->buyerProductIdentifier, 'vendorProductIdentifier' => $this->vendorProductIdentifier, 'availableQuantity' => $this->quantity->toArray(), 'isObsolete' => $this->isObsolete, ] ); } }