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