for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the FreshSinchBundle
*
* (c) Artem Genvald <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Fresh\SinchBundle\Model;
/**
* Identity.
* @author Artem Genvald <[email protected]>
* @link https://www.sinch.com/docs/sms/#incomingsms
class Identity
{
* @var string $type Type
private $type;
* @var string $endpoint Endpoint
private $endpoint;
* Get type.
* @return string Type
public function getType()
return $this->type;
}
* Set type.
* @param string $type type
* @return $this
public function setType($type)
$this->type = $type;
return $this;
* Get endpoint.
* @return string Endpoint
public function getEndpoint()
return $this->endpoint;
* Set endpoint.
* @param string $endpoint endpoint
public function setEndpoint($endpoint)
$this->endpoint = $endpoint;