1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<?php
/**
* @author @jayS-de <jens.schulze@commercetools.de>
* @created: 27.01.15, 18:22
*/
namespace Commercetools\Core\Model\Cart;
use Commercetools\Core\Model\Common\Context;
/**
* @package Commercetools\Core\Model\Cart
* @link http://dev.commercetools.com/http-api-projects-carts.html#scoreshippingrateinputdraft
* @method string getType()
* @method ScoreShippingRateInputDraft setType(string $type = null)
* @method int getScore()
* @method ScoreShippingRateInputDraft setScore(int $score = null)
*/
class ScoreShippingRateInputDraft extends ShippingRateInputDraft
{
public function fieldDefinitions()
{
return [
'type' => [static::TYPE => 'string'],
'score' => [static::TYPE => 'int'],
];
}
/**
* @param int $score
* @param Context|callable $context
* @return ScoreShippingRateInputDraft
*/
public static function ofScore($score, $context = null)
{
return static::ofType(ScoreShippingRateInput::INPUT_TYPE, $context)->setScore($score);
}
}