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\Common\LocalizedString;
* @package Commercetools\Core\Model\Payment
* @link https://dev.commercetools.com/http-api-projects-payments.html#paymentMethodInfo
* @method string getPaymentInterface()
* @method PaymentMethodInfo setPaymentInterface(string $paymentInterface = null)
* @method string getMethod()
* @method PaymentMethodInfo setMethod(string $method = null)
* @method LocalizedString getName()
* @method PaymentMethodInfo setName(LocalizedString $name = null)
class PaymentMethodInfo extends JsonObject
{
public function fieldDefinitions()
return [
'paymentInterface' => [static::TYPE => 'string'],
'method' => [static::TYPE => 'string'],
'name' => [static::TYPE => '\Commercetools\Core\Model\Common\LocalizedString'],
];
}