commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
PaymentLabel.php
1<?php
2
3declare(strict_types=1);
10
14
15interface PaymentLabel extends Label
16{
17
18 public const FIELD_KEY = 'key';
19 public const FIELD_AMOUNT_PLANNED = 'amountPlanned';
20
25 public function getType();
26
33 public function getKey();
34
41 public function getAmountPlanned();
42
46 public function setKey(?string $key): void;
47
51 public function setAmountPlanned(?Money $amountPlanned): void;
52}