reservationId = $reservationId; $this->stockId = $stockId; $this->sku = $sku; $this->quantity = $quantity; $this->metadata = $metadata; } /** * @inheritdoc */ public function getReservationId(): ?int { return $this->reservationId === null ? null: (int)$this->reservationId; } /** * @inheritdoc */ public function getStockId(): int { return $this->stockId; } /** * @inheritdoc */ public function getSku(): string { return $this->sku; } /** * @inheritdoc */ public function getQuantity(): float { return $this->quantity; } /** * @inheritdoc */ public function getMetadata(): ?string { return $this->metadata; } }