google.protobuf.Type */ class Type extends \Google\Protobuf\Internal\Message { /** * The fully qualified message name. * * Generated from protobuf field string name = 1; */ private $name = ''; /** * The list of fields. * * Generated from protobuf field repeated .google.protobuf.Field fields = 2; */ private $fields; /** * The list of types appearing in `oneof` definitions in this type. * * Generated from protobuf field repeated string oneofs = 3; */ private $oneofs; /** * The protocol buffer options. * * Generated from protobuf field repeated .google.protobuf.Option options = 4; */ private $options; /** * The source context. * * Generated from protobuf field .google.protobuf.SourceContext source_context = 5; */ private $source_context = null; /** * The source syntax. * * Generated from protobuf field .google.protobuf.Syntax syntax = 6; */ private $syntax = 0; public function __construct() { \GPBMetadata\Google\Protobuf\Type::initOnce(); parent::__construct(); } /** * The fully qualified message name. * * Generated from protobuf field string name = 1; * @return string */ public function getName() { return $this->name; } /** * The fully qualified message name. * * Generated from protobuf field string name = 1; * @param string $var * @return $this */ public function setName($var) { GPBUtil::checkString($var, True); $this->name = $var; return $this; } /** * The list of fields. * * Generated from protobuf field repeated .google.protobuf.Field fields = 2; * @return \Google\Protobuf\Internal\RepeatedField */ public function getFields() { return $this->fields; } /** * The list of fields. * * Generated from protobuf field repeated .google.protobuf.Field fields = 2; * @param \Google\Protobuf\Field[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setFields($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Field::class); $this->fields = $arr; return $this; } /** * The list of types appearing in `oneof` definitions in this type. * * Generated from protobuf field repeated string oneofs = 3; * @return \Google\Protobuf\Internal\RepeatedField */ public function getOneofs() { return $this->oneofs; } /** * The list of types appearing in `oneof` definitions in this type. * * Generated from protobuf field repeated string oneofs = 3; * @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setOneofs($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING); $this->oneofs = $arr; return $this; } /** * The protocol buffer options. * * Generated from protobuf field repeated .google.protobuf.Option options = 4; * @return \Google\Protobuf\Internal\RepeatedField */ public function getOptions() { return $this->options; } /** * The protocol buffer options. * * Generated from protobuf field repeated .google.protobuf.Option options = 4; * @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setOptions($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Option::class); $this->options = $arr; return $this; } /** * The source context. * * Generated from protobuf field .google.protobuf.SourceContext source_context = 5; * @return \Google\Protobuf\SourceContext */ public function getSourceContext() { return $this->source_context; } /** * The source context. * * Generated from protobuf field .google.protobuf.SourceContext source_context = 5; * @param \Google\Protobuf\SourceContext $var * @return $this */ public function setSourceContext($var) { GPBUtil::checkMessage($var, \Google\Protobuf\SourceContext::class); $this->source_context = $var; return $this; } /** * The source syntax. * * Generated from protobuf field .google.protobuf.Syntax syntax = 6; * @return int */ public function getSyntax() { return $this->syntax; } /** * The source syntax. * * Generated from protobuf field .google.protobuf.Syntax syntax = 6; * @param int $var * @return $this */ public function setSyntax($var) { GPBUtil::checkEnum($var, \Google\Protobuf\Syntax::class); $this->syntax = $var; return $this; } }