api.GetGatewaysSummaryRequest */ class GetGatewaysSummaryRequest extends \Google\Protobuf\Internal\Message { /** * Tenant ID (UUID). * * Generated from protobuf field string tenant_id = 1; */ protected $tenant_id = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $tenant_id * Tenant ID (UUID). * } */ public function __construct($data = NULL) { \GPBMetadata\Chirpstack\Api\Internal::initOnce(); parent::__construct($data); } /** * Tenant ID (UUID). * * Generated from protobuf field string tenant_id = 1; * @return string */ public function getTenantId() { return $this->tenant_id; } /** * Tenant ID (UUID). * * Generated from protobuf field string tenant_id = 1; * @param string $var * @return $this */ public function setTenantId($var) { GPBUtil::checkString($var, True); $this->tenant_id = $var; return $this; } }