Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ipol.sdek/classes/lib/Api/Entity/UniversalPart/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/ipol.sdek/classes/lib/Api/Entity/UniversalPart/Service.php

<?php
namespace Ipolh\SDEK\Api\Entity\UniversalPart;

use Ipolh\SDEK\Api\Entity\AbstractEntity;

class Service extends AbstractEntity
{
    /**
     * @var string
     */
    protected $code;

    /**
     * @var string|null
     */
    protected $parameter;

    /**
     * @return string
     */
    public function getCode()
    {
        return $this->code;
    }

    /**
     * @param string $code
     * @return Service
     */
    public function setCode($code)
    {
        $this->code = $code;
        return $this;
    }

    /**
     * @return string|null
     */
    public function getParameter()
    {
        return $this->parameter;
    }

    /**
     * @param string|null $parameter
     * @return Service
     */
    public function setParameter($parameter)
    {
        $this->parameter = $parameter;
        return $this;
    }

}