api.MyDevicesIntegration
*/
class MyDevicesIntegration extends \Google\Protobuf\Internal\Message
{
/**
* Application ID (UUID).
*
* Generated from protobuf field string application_id = 1;
*/
protected $application_id = '';
/**
* myDevices API endpoint.
*
* Generated from protobuf field string endpoint = 2;
*/
protected $endpoint = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $application_id
* Application ID (UUID).
* @type string $endpoint
* myDevices API endpoint.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Chirpstack\Api\Application::initOnce();
parent::__construct($data);
}
/**
* Application ID (UUID).
*
* Generated from protobuf field string application_id = 1;
* @return string
*/
public function getApplicationId()
{
return $this->application_id;
}
/**
* Application ID (UUID).
*
* Generated from protobuf field string application_id = 1;
* @param string $var
* @return $this
*/
public function setApplicationId($var)
{
GPBUtil::checkString($var, True);
$this->application_id = $var;
return $this;
}
/**
* myDevices API endpoint.
*
* Generated from protobuf field string endpoint = 2;
* @return string
*/
public function getEndpoint()
{
return $this->endpoint;
}
/**
* myDevices API endpoint.
*
* Generated from protobuf field string endpoint = 2;
* @param string $var
* @return $this
*/
public function setEndpoint($var)
{
GPBUtil::checkString($var, True);
$this->endpoint = $var;
return $this;
}
}