Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ReservationInterface.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
19 {
23  const RESERVATION_ID = 'reservation_id';
24  const STOCK_ID = 'stock_id';
25  const SKU = 'sku';
26  const QUANTITY = 'quantity';
27  const METADATA = 'metadata';
28 
34  public function getReservationId(): ?int;
35 
41  public function getStockId(): int;
42 
48  public function getSku(): string;
49 
61  public function getQuantity(): float;
62 
70  public function getMetadata(): ?string;
71 }