commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
DateTimeAttribute.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 use DateTimeImmutable;
14 
15 interface DateTimeAttribute extends Attribute
16 {
17  public const FIELD_VALUE = 'value';
18 
23  public function getValue();
24 
28  public function setValue(?DateTimeImmutable $value): void;
29 }