for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author @jayS-de <[email protected]>
*/
namespace Commercetools\Core\Model\Payment;
use Commercetools\Core\Model\Common\JsonObject;
use Commercetools\Core\Model\State\StateReference;
* @package Commercetools\Core\Model\Payment
* @link https://dev.commercetools.com/http-api-projects-payments.html#paymentStatus
* @method string getInterfaceCode()
* @method PaymentStatus setInterfaceCode(string $interfaceCode = null)
* @method string getInterfaceText()
* @method PaymentStatus setInterfaceText(string $interfaceText = null)
* @method StateReference getState()
* @method PaymentStatus setState(StateReference $state = null)
class PaymentStatus extends JsonObject
{
public function fieldDefinitions()
return [
'interfaceCode' => [static::TYPE => 'string'],
'interfaceText' => [static::TYPE => 'string'],
'state' => [static::TYPE => '\Commercetools\Core\Model\State\StateReference'],
];
}