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
32 public function getOwner();
33
38 public function getCreatedAt();
39
44 public function getCheckoutStartedAt();
45
49 public function setQuantity(?int $quantity): void;
50
54 public function setOwner(?Reference $owner): void;
55
59 public function setCreatedAt(?string $createdAt): void;
60
64 public function setCheckoutStartedAt(?string $checkoutStartedAt): void;
65}
setCheckoutStartedAt(?string $checkoutStartedAt)