<?php
/**
* Copyright © Qliro AB. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Qliro\QliroOne\Model\QliroOrder\ShippingMethod;
use Qliro\QliroOne\Api\Data\QliroOrderShippingMethodOptionInterface;
/**
* QliroOne order shipping method option class
*/
class Option implements QliroOrderShippingMethodOptionInterface
{
/**
* @var string
*/
private $merchantReference;
/**
* @var string
*/
private $displayName;
/**
* @var array
*/
private $descriptions;
/**
* Getter.
*
* @return string
*/
public function getMerchantReference()
{
return $this->merchantReference;
}
/**
* @param string $merchantReference
* @return $this
*/
public function setMerchantReference($merchantReference)
{
$this->merchantReference = $merchantReference;
return $this;
}
/**
* Getter.
*
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
/**
* @param string $displayName
* @return $this
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
return $this;
}
/**
* Getter.
*
* @return array
*/
public function getDescriptions()
{
return $this->descriptions;
}
/**
* @param array $descriptions
* @return $this
*/
public function setDescriptions($descriptions)
{
$this->descriptions = $descriptions;
return $this;
}
}