api.IntegrationListItem */ class IntegrationListItem extends \Google\Protobuf\Internal\Message { /** * Integration kind. * * Generated from protobuf field .api.IntegrationKind kind = 1; */ protected $kind = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $kind * Integration kind. * } */ public function __construct($data = NULL) { \GPBMetadata\Chirpstack\Api\Application::initOnce(); parent::__construct($data); } /** * Integration kind. * * Generated from protobuf field .api.IntegrationKind kind = 1; * @return int */ public function getKind() { return $this->kind; } /** * Integration kind. * * Generated from protobuf field .api.IntegrationKind kind = 1; * @param int $var * @return $this */ public function setKind($var) { GPBUtil::checkEnum($var, \Chirpstack\Api\IntegrationKind::class); $this->kind = $var; return $this; } }