commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-api
src
Models
Payment
PaymentChangeAmountPlannedActionBuilder.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Api\Models\Payment
;
10
11
use
Commercetools\Api\Models\Common\Money
;
12
use
Commercetools\Api\Models\Common\MoneyBuilder
;
13
use
Commercetools\Base\Builder
;
14
use
Commercetools\Base\DateTimeImmutableCollection
;
15
use
Commercetools\Base\JsonObject
;
16
use
Commercetools\Base\JsonObjectModel
;
17
use
Commercetools\Base\MapperFactory
;
18
use stdClass;
19
23
final
class
PaymentChangeAmountPlannedActionBuilder
implements
Builder
24
{
29
private
$amount;
30
37
public
function
getAmount
()
38
{
39
return
$this->amount instanceof
MoneyBuilder
? $this->amount->
build
() : $this->amount;
40
}
41
46
public
function
withAmount
(?
Money
$amount)
47
{
48
$this->amount = $amount;
49
50
return
$this;
51
}
52
57
public
function
withAmountBuilder
(?
MoneyBuilder
$amount)
58
{
59
$this->amount = $amount;
60
61
return
$this;
62
}
63
64
public
function
build
():
PaymentChangeAmountPlannedAction
65
{
66
return
new
PaymentChangeAmountPlannedActionModel
(
67
$this->amount instanceof
MoneyBuilder
? $this->amount->
build
() : $this->amount
68
);
69
}
70
71
public
static
function
of
():
PaymentChangeAmountPlannedActionBuilder
72
{
73
return
new
self
();
74
}
75
}
Commercetools\Api\Models\Common\MoneyBuilder
Definition:
MoneyBuilder.php:22
Commercetools\Api\Models\Common\MoneyBuilder\build
build()
Definition:
MoneyBuilder.php:84
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedActionBuilder
Definition:
PaymentChangeAmountPlannedActionBuilder.php:24
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedActionBuilder\withAmountBuilder
withAmountBuilder(?MoneyBuilder $amount)
Definition:
PaymentChangeAmountPlannedActionBuilder.php:57
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedActionBuilder\getAmount
getAmount()
Definition:
PaymentChangeAmountPlannedActionBuilder.php:37
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedActionBuilder\of
static of()
Definition:
PaymentChangeAmountPlannedActionBuilder.php:71
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedActionBuilder\build
build()
Definition:
PaymentChangeAmountPlannedActionBuilder.php:64
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedActionBuilder\withAmount
withAmount(?Money $amount)
Definition:
PaymentChangeAmountPlannedActionBuilder.php:46
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedActionModel
Definition:
PaymentChangeAmountPlannedActionModel.php:23
Commercetools\Base\DateTimeImmutableCollection
Definition:
DateTimeImmutableCollection.php:21
Commercetools\Base\JsonObjectModel
Definition:
JsonObjectModel.php:15
Commercetools\Base\MapperFactory
Definition:
MapperFactory.php:16
Commercetools\Api\Models\Common\Money
Definition:
Money.php:15
Commercetools\Api\Models\Payment\PaymentChangeAmountPlannedAction
Definition:
PaymentChangeAmountPlannedAction.php:16
Commercetools\Base\Builder
Definition:
Builder.php:16
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\Api\Models\Payment
Definition:
Payment.php:9
Generated by
1.9.1