commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
Reservation.php
1<?php
2
3declare(strict_types=1);
10
13
14interface Reservation extends JsonObject
15{
16
17 public const FIELD_QUANTITY = 'quantity';
18 public const FIELD_OWNER = 'owner';
19 public const FIELD_CREATED_AT = 'createdAt';
20 public const FIELD_CHECKOUT_STARTED_AT = 'checkoutStartedAt';
21
26 public function getQuantity();
27
34 public function getOwner();
35
40 public function getCreatedAt();
41
46 public function getCheckoutStartedAt();
47
51 public function setQuantity(?int $quantity): void;
52
56 public function setOwner(?Reference $owner): void;
57
61 public function setCreatedAt(?string $createdAt): void;
62
66 public function setCheckoutStartedAt(?string $checkoutStartedAt): void;
67}
setCheckoutStartedAt(?string $checkoutStartedAt)