for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <[email protected]>
* Dariusz Rumiński <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Etrias\EwarehousingConnector\Response;
class ShippingResponse
{
/** @var string */
protected $id;
protected $distributor;
protected $code;
protected $description;
protected $type;
/**
* @return string
public function getId()
return $this->id;
}
* @param string $id
* @return ShippingResponse
public function setId($id)
$this->id = $id;
return $this;
public function getDistributor()
return $this->distributor;
* @param string $distributor
public function setDistributor($distributor)
$this->distributor = $distributor;
public function getCode()
return $this->code;
* @param string $code
public function setCode($code)
$this->code = $code;
public function getDescription()
return $this->description;
* @param string $description
public function setDescription($description)
$this->description = $description;
public function getType()
return $this->type;
* @param string $type
public function setType($type)
$this->type = $type;