function Api::setName
The fully qualified name of this interface, including package name followed by the interface's simple name.
Generated from protobuf field <code>string name = 1;</code>
Parameters
string $var:
Return value
$this
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Api.php, line 151
Class
- Api
- Api is a light-weight descriptor for an API Interface. Interfaces are also described as "protocol buffer services" in some contexts, such as by the "service" keyword in a .proto file, but they are different from API Services, which…
Namespace
Google\ProtobufCode
public function setName($var) {
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}