| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: google/protobuf/descriptor.proto
- namespace Google\Protobuf\Internal;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\GPBWire;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\InputStream;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>google.protobuf.FileOptions</code>
- */
- class FileOptions extends \Google\Protobuf\Internal\Message
- {
- /**
- * Sets the Java package where classes generated from this .proto will be
- * placed. By default, the proto package is used, but this is often
- * inappropriate because proto packages do not normally start with backwards
- * domain names.
- *
- * Generated from protobuf field <code>optional string java_package = 1;</code>
- */
- private $java_package = '';
- private $has_java_package = false;
- /**
- * If set, all the classes from the .proto file are wrapped in a single
- * outer class with the given name. This applies to both Proto1
- * (equivalent to the old "--one_java_file" option) and Proto2 (where
- * a .proto always translates to a single class, but you may want to
- * explicitly choose the class name).
- *
- * Generated from protobuf field <code>optional string java_outer_classname = 8;</code>
- */
- private $java_outer_classname = '';
- private $has_java_outer_classname = false;
- /**
- * If set true, then the Java code generator will generate a separate .java
- * file for each top-level message, enum, and service defined in the .proto
- * file. Thus, these types will *not* be nested inside the outer class
- * named by java_outer_classname. However, the outer class will still be
- * generated to contain the file's getDescriptor() method as well as any
- * top-level extensions defined in the file.
- *
- * Generated from protobuf field <code>optional bool java_multiple_files = 10 [default = false];</code>
- */
- private $java_multiple_files = false;
- private $has_java_multiple_files = false;
- /**
- * This option does nothing.
- *
- * Generated from protobuf field <code>optional bool java_generate_equals_and_hash = 20 [deprecated = true];</code>
- */
- private $java_generate_equals_and_hash = false;
- private $has_java_generate_equals_and_hash = false;
- /**
- * If set true, then the Java2 code generator will generate code that
- * throws an exception whenever an attempt is made to assign a non-UTF-8
- * byte sequence to a string field.
- * Message reflection will do the same.
- * However, an extension field still accepts non-UTF-8 byte sequences.
- * This option has no effect on when used with the lite runtime.
- *
- * Generated from protobuf field <code>optional bool java_string_check_utf8 = 27 [default = false];</code>
- */
- private $java_string_check_utf8 = false;
- private $has_java_string_check_utf8 = false;
- /**
- * Generated from protobuf field <code>optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];</code>
- */
- private $optimize_for = 0;
- private $has_optimize_for = false;
- /**
- * Sets the Go package where structs generated from this .proto will be
- * placed. If omitted, the Go package will be derived from the following:
- * - The basename of the package import path, if provided.
- * - Otherwise, the package statement in the .proto file, if present.
- * - Otherwise, the basename of the .proto file, without extension.
- *
- * Generated from protobuf field <code>optional string go_package = 11;</code>
- */
- private $go_package = '';
- private $has_go_package = false;
- /**
- * Should generic services be generated in each language? "Generic" services
- * are not specific to any particular RPC system. They are generated by the
- * main code generators in each language (without additional plugins).
- * Generic services were the only kind of service generation supported by
- * early versions of google.protobuf.
- * Generic services are now considered deprecated in favor of using plugins
- * that generate code specific to your particular RPC system. Therefore,
- * these default to false. Old code which depends on generic services should
- * explicitly set them to true.
- *
- * Generated from protobuf field <code>optional bool cc_generic_services = 16 [default = false];</code>
- */
- private $cc_generic_services = false;
- private $has_cc_generic_services = false;
- /**
- * Generated from protobuf field <code>optional bool java_generic_services = 17 [default = false];</code>
- */
- private $java_generic_services = false;
- private $has_java_generic_services = false;
- /**
- * Generated from protobuf field <code>optional bool py_generic_services = 18 [default = false];</code>
- */
- private $py_generic_services = false;
- private $has_py_generic_services = false;
- /**
- * Generated from protobuf field <code>optional bool php_generic_services = 42 [default = false];</code>
- */
- private $php_generic_services = false;
- private $has_php_generic_services = false;
- /**
- * Is this file deprecated?
- * Depending on the target platform, this can emit Deprecated annotations
- * for everything in the file, or it will be completely ignored; in the very
- * least, this is a formalization for deprecating files.
- *
- * Generated from protobuf field <code>optional bool deprecated = 23 [default = false];</code>
- */
- private $deprecated = false;
- private $has_deprecated = false;
- /**
- * Enables the use of arenas for the proto messages in this file. This applies
- * only to generated classes for C++.
- *
- * Generated from protobuf field <code>optional bool cc_enable_arenas = 31 [default = false];</code>
- */
- private $cc_enable_arenas = false;
- private $has_cc_enable_arenas = false;
- /**
- * Sets the objective c class prefix which is prepended to all objective c
- * generated classes from this .proto. There is no default.
- *
- * Generated from protobuf field <code>optional string objc_class_prefix = 36;</code>
- */
- private $objc_class_prefix = '';
- private $has_objc_class_prefix = false;
- /**
- * Namespace for generated classes; defaults to the package.
- *
- * Generated from protobuf field <code>optional string csharp_namespace = 37;</code>
- */
- private $csharp_namespace = '';
- private $has_csharp_namespace = false;
- /**
- * By default Swift generators will take the proto package and CamelCase it
- * replacing '.' with underscore and use that to prefix the types/symbols
- * defined. When this options is provided, they will use this value instead
- * to prefix the types/symbols defined.
- *
- * Generated from protobuf field <code>optional string swift_prefix = 39;</code>
- */
- private $swift_prefix = '';
- private $has_swift_prefix = false;
- /**
- * Sets the php class prefix which is prepended to all php generated classes
- * from this .proto. Default is empty.
- *
- * Generated from protobuf field <code>optional string php_class_prefix = 40;</code>
- */
- private $php_class_prefix = '';
- private $has_php_class_prefix = false;
- /**
- * Use this option to change the namespace of php generated classes. Default
- * is empty. When this option is empty, the package name will be used for
- * determining the namespace.
- *
- * Generated from protobuf field <code>optional string php_namespace = 41;</code>
- */
- private $php_namespace = '';
- private $has_php_namespace = false;
- /**
- * The parser stores options it doesn't recognize here.
- * See the documentation for the "Options" section above.
- *
- * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
- */
- private $uninterpreted_option;
- private $has_uninterpreted_option = false;
- public function __construct() {
- \GPBMetadata\Google\Protobuf\Internal\Descriptor::initOnce();
- parent::__construct();
- }
- /**
- * Sets the Java package where classes generated from this .proto will be
- * placed. By default, the proto package is used, but this is often
- * inappropriate because proto packages do not normally start with backwards
- * domain names.
- *
- * Generated from protobuf field <code>optional string java_package = 1;</code>
- * @return string
- */
- public function getJavaPackage()
- {
- return $this->java_package;
- }
- /**
- * Sets the Java package where classes generated from this .proto will be
- * placed. By default, the proto package is used, but this is often
- * inappropriate because proto packages do not normally start with backwards
- * domain names.
- *
- * Generated from protobuf field <code>optional string java_package = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setJavaPackage($var)
- {
- GPBUtil::checkString($var, True);
- $this->java_package = $var;
- $this->has_java_package = true;
- return $this;
- }
- public function hasJavaPackage()
- {
- return $this->has_java_package;
- }
- /**
- * If set, all the classes from the .proto file are wrapped in a single
- * outer class with the given name. This applies to both Proto1
- * (equivalent to the old "--one_java_file" option) and Proto2 (where
- * a .proto always translates to a single class, but you may want to
- * explicitly choose the class name).
- *
- * Generated from protobuf field <code>optional string java_outer_classname = 8;</code>
- * @return string
- */
- public function getJavaOuterClassname()
- {
- return $this->java_outer_classname;
- }
- /**
- * If set, all the classes from the .proto file are wrapped in a single
- * outer class with the given name. This applies to both Proto1
- * (equivalent to the old "--one_java_file" option) and Proto2 (where
- * a .proto always translates to a single class, but you may want to
- * explicitly choose the class name).
- *
- * Generated from protobuf field <code>optional string java_outer_classname = 8;</code>
- * @param string $var
- * @return $this
- */
- public function setJavaOuterClassname($var)
- {
- GPBUtil::checkString($var, True);
- $this->java_outer_classname = $var;
- $this->has_java_outer_classname = true;
- return $this;
- }
- public function hasJavaOuterClassname()
- {
- return $this->has_java_outer_classname;
- }
- /**
- * If set true, then the Java code generator will generate a separate .java
- * file for each top-level message, enum, and service defined in the .proto
- * file. Thus, these types will *not* be nested inside the outer class
- * named by java_outer_classname. However, the outer class will still be
- * generated to contain the file's getDescriptor() method as well as any
- * top-level extensions defined in the file.
- *
- * Generated from protobuf field <code>optional bool java_multiple_files = 10 [default = false];</code>
- * @return bool
- */
- public function getJavaMultipleFiles()
- {
- return $this->java_multiple_files;
- }
- /**
- * If set true, then the Java code generator will generate a separate .java
- * file for each top-level message, enum, and service defined in the .proto
- * file. Thus, these types will *not* be nested inside the outer class
- * named by java_outer_classname. However, the outer class will still be
- * generated to contain the file's getDescriptor() method as well as any
- * top-level extensions defined in the file.
- *
- * Generated from protobuf field <code>optional bool java_multiple_files = 10 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setJavaMultipleFiles($var)
- {
- GPBUtil::checkBool($var);
- $this->java_multiple_files = $var;
- $this->has_java_multiple_files = true;
- return $this;
- }
- public function hasJavaMultipleFiles()
- {
- return $this->has_java_multiple_files;
- }
- /**
- * This option does nothing.
- *
- * Generated from protobuf field <code>optional bool java_generate_equals_and_hash = 20 [deprecated = true];</code>
- * @return bool
- */
- public function getJavaGenerateEqualsAndHash()
- {
- return $this->java_generate_equals_and_hash;
- }
- /**
- * This option does nothing.
- *
- * Generated from protobuf field <code>optional bool java_generate_equals_and_hash = 20 [deprecated = true];</code>
- * @param bool $var
- * @return $this
- */
- public function setJavaGenerateEqualsAndHash($var)
- {
- GPBUtil::checkBool($var);
- $this->java_generate_equals_and_hash = $var;
- $this->has_java_generate_equals_and_hash = true;
- return $this;
- }
- public function hasJavaGenerateEqualsAndHash()
- {
- return $this->has_java_generate_equals_and_hash;
- }
- /**
- * If set true, then the Java2 code generator will generate code that
- * throws an exception whenever an attempt is made to assign a non-UTF-8
- * byte sequence to a string field.
- * Message reflection will do the same.
- * However, an extension field still accepts non-UTF-8 byte sequences.
- * This option has no effect on when used with the lite runtime.
- *
- * Generated from protobuf field <code>optional bool java_string_check_utf8 = 27 [default = false];</code>
- * @return bool
- */
- public function getJavaStringCheckUtf8()
- {
- return $this->java_string_check_utf8;
- }
- /**
- * If set true, then the Java2 code generator will generate code that
- * throws an exception whenever an attempt is made to assign a non-UTF-8
- * byte sequence to a string field.
- * Message reflection will do the same.
- * However, an extension field still accepts non-UTF-8 byte sequences.
- * This option has no effect on when used with the lite runtime.
- *
- * Generated from protobuf field <code>optional bool java_string_check_utf8 = 27 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setJavaStringCheckUtf8($var)
- {
- GPBUtil::checkBool($var);
- $this->java_string_check_utf8 = $var;
- $this->has_java_string_check_utf8 = true;
- return $this;
- }
- public function hasJavaStringCheckUtf8()
- {
- return $this->has_java_string_check_utf8;
- }
- /**
- * Generated from protobuf field <code>optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];</code>
- * @return int
- */
- public function getOptimizeFor()
- {
- return $this->optimize_for;
- }
- /**
- * Generated from protobuf field <code>optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];</code>
- * @param int $var
- * @return $this
- */
- public function setOptimizeFor($var)
- {
- GPBUtil::checkEnum($var, \Google\Protobuf\Internal\FileOptions_OptimizeMode::class);
- $this->optimize_for = $var;
- $this->has_optimize_for = true;
- return $this;
- }
- public function hasOptimizeFor()
- {
- return $this->has_optimize_for;
- }
- /**
- * Sets the Go package where structs generated from this .proto will be
- * placed. If omitted, the Go package will be derived from the following:
- * - The basename of the package import path, if provided.
- * - Otherwise, the package statement in the .proto file, if present.
- * - Otherwise, the basename of the .proto file, without extension.
- *
- * Generated from protobuf field <code>optional string go_package = 11;</code>
- * @return string
- */
- public function getGoPackage()
- {
- return $this->go_package;
- }
- /**
- * Sets the Go package where structs generated from this .proto will be
- * placed. If omitted, the Go package will be derived from the following:
- * - The basename of the package import path, if provided.
- * - Otherwise, the package statement in the .proto file, if present.
- * - Otherwise, the basename of the .proto file, without extension.
- *
- * Generated from protobuf field <code>optional string go_package = 11;</code>
- * @param string $var
- * @return $this
- */
- public function setGoPackage($var)
- {
- GPBUtil::checkString($var, True);
- $this->go_package = $var;
- $this->has_go_package = true;
- return $this;
- }
- public function hasGoPackage()
- {
- return $this->has_go_package;
- }
- /**
- * Should generic services be generated in each language? "Generic" services
- * are not specific to any particular RPC system. They are generated by the
- * main code generators in each language (without additional plugins).
- * Generic services were the only kind of service generation supported by
- * early versions of google.protobuf.
- * Generic services are now considered deprecated in favor of using plugins
- * that generate code specific to your particular RPC system. Therefore,
- * these default to false. Old code which depends on generic services should
- * explicitly set them to true.
- *
- * Generated from protobuf field <code>optional bool cc_generic_services = 16 [default = false];</code>
- * @return bool
- */
- public function getCcGenericServices()
- {
- return $this->cc_generic_services;
- }
- /**
- * Should generic services be generated in each language? "Generic" services
- * are not specific to any particular RPC system. They are generated by the
- * main code generators in each language (without additional plugins).
- * Generic services were the only kind of service generation supported by
- * early versions of google.protobuf.
- * Generic services are now considered deprecated in favor of using plugins
- * that generate code specific to your particular RPC system. Therefore,
- * these default to false. Old code which depends on generic services should
- * explicitly set them to true.
- *
- * Generated from protobuf field <code>optional bool cc_generic_services = 16 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setCcGenericServices($var)
- {
- GPBUtil::checkBool($var);
- $this->cc_generic_services = $var;
- $this->has_cc_generic_services = true;
- return $this;
- }
- public function hasCcGenericServices()
- {
- return $this->has_cc_generic_services;
- }
- /**
- * Generated from protobuf field <code>optional bool java_generic_services = 17 [default = false];</code>
- * @return bool
- */
- public function getJavaGenericServices()
- {
- return $this->java_generic_services;
- }
- /**
- * Generated from protobuf field <code>optional bool java_generic_services = 17 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setJavaGenericServices($var)
- {
- GPBUtil::checkBool($var);
- $this->java_generic_services = $var;
- $this->has_java_generic_services = true;
- return $this;
- }
- public function hasJavaGenericServices()
- {
- return $this->has_java_generic_services;
- }
- /**
- * Generated from protobuf field <code>optional bool py_generic_services = 18 [default = false];</code>
- * @return bool
- */
- public function getPyGenericServices()
- {
- return $this->py_generic_services;
- }
- /**
- * Generated from protobuf field <code>optional bool py_generic_services = 18 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setPyGenericServices($var)
- {
- GPBUtil::checkBool($var);
- $this->py_generic_services = $var;
- $this->has_py_generic_services = true;
- return $this;
- }
- public function hasPyGenericServices()
- {
- return $this->has_py_generic_services;
- }
- /**
- * Generated from protobuf field <code>optional bool php_generic_services = 42 [default = false];</code>
- * @return bool
- */
- public function getPhpGenericServices()
- {
- return $this->php_generic_services;
- }
- /**
- * Generated from protobuf field <code>optional bool php_generic_services = 42 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setPhpGenericServices($var)
- {
- GPBUtil::checkBool($var);
- $this->php_generic_services = $var;
- $this->has_php_generic_services = true;
- return $this;
- }
- public function hasPhpGenericServices()
- {
- return $this->has_php_generic_services;
- }
- /**
- * Is this file deprecated?
- * Depending on the target platform, this can emit Deprecated annotations
- * for everything in the file, or it will be completely ignored; in the very
- * least, this is a formalization for deprecating files.
- *
- * Generated from protobuf field <code>optional bool deprecated = 23 [default = false];</code>
- * @return bool
- */
- public function getDeprecated()
- {
- return $this->deprecated;
- }
- /**
- * Is this file deprecated?
- * Depending on the target platform, this can emit Deprecated annotations
- * for everything in the file, or it will be completely ignored; in the very
- * least, this is a formalization for deprecating files.
- *
- * Generated from protobuf field <code>optional bool deprecated = 23 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setDeprecated($var)
- {
- GPBUtil::checkBool($var);
- $this->deprecated = $var;
- $this->has_deprecated = true;
- return $this;
- }
- public function hasDeprecated()
- {
- return $this->has_deprecated;
- }
- /**
- * Enables the use of arenas for the proto messages in this file. This applies
- * only to generated classes for C++.
- *
- * Generated from protobuf field <code>optional bool cc_enable_arenas = 31 [default = false];</code>
- * @return bool
- */
- public function getCcEnableArenas()
- {
- return $this->cc_enable_arenas;
- }
- /**
- * Enables the use of arenas for the proto messages in this file. This applies
- * only to generated classes for C++.
- *
- * Generated from protobuf field <code>optional bool cc_enable_arenas = 31 [default = false];</code>
- * @param bool $var
- * @return $this
- */
- public function setCcEnableArenas($var)
- {
- GPBUtil::checkBool($var);
- $this->cc_enable_arenas = $var;
- $this->has_cc_enable_arenas = true;
- return $this;
- }
- public function hasCcEnableArenas()
- {
- return $this->has_cc_enable_arenas;
- }
- /**
- * Sets the objective c class prefix which is prepended to all objective c
- * generated classes from this .proto. There is no default.
- *
- * Generated from protobuf field <code>optional string objc_class_prefix = 36;</code>
- * @return string
- */
- public function getObjcClassPrefix()
- {
- return $this->objc_class_prefix;
- }
- /**
- * Sets the objective c class prefix which is prepended to all objective c
- * generated classes from this .proto. There is no default.
- *
- * Generated from protobuf field <code>optional string objc_class_prefix = 36;</code>
- * @param string $var
- * @return $this
- */
- public function setObjcClassPrefix($var)
- {
- GPBUtil::checkString($var, True);
- $this->objc_class_prefix = $var;
- $this->has_objc_class_prefix = true;
- return $this;
- }
- public function hasObjcClassPrefix()
- {
- return $this->has_objc_class_prefix;
- }
- /**
- * Namespace for generated classes; defaults to the package.
- *
- * Generated from protobuf field <code>optional string csharp_namespace = 37;</code>
- * @return string
- */
- public function getCsharpNamespace()
- {
- return $this->csharp_namespace;
- }
- /**
- * Namespace for generated classes; defaults to the package.
- *
- * Generated from protobuf field <code>optional string csharp_namespace = 37;</code>
- * @param string $var
- * @return $this
- */
- public function setCsharpNamespace($var)
- {
- GPBUtil::checkString($var, True);
- $this->csharp_namespace = $var;
- $this->has_csharp_namespace = true;
- return $this;
- }
- public function hasCsharpNamespace()
- {
- return $this->has_csharp_namespace;
- }
- /**
- * By default Swift generators will take the proto package and CamelCase it
- * replacing '.' with underscore and use that to prefix the types/symbols
- * defined. When this options is provided, they will use this value instead
- * to prefix the types/symbols defined.
- *
- * Generated from protobuf field <code>optional string swift_prefix = 39;</code>
- * @return string
- */
- public function getSwiftPrefix()
- {
- return $this->swift_prefix;
- }
- /**
- * By default Swift generators will take the proto package and CamelCase it
- * replacing '.' with underscore and use that to prefix the types/symbols
- * defined. When this options is provided, they will use this value instead
- * to prefix the types/symbols defined.
- *
- * Generated from protobuf field <code>optional string swift_prefix = 39;</code>
- * @param string $var
- * @return $this
- */
- public function setSwiftPrefix($var)
- {
- GPBUtil::checkString($var, True);
- $this->swift_prefix = $var;
- $this->has_swift_prefix = true;
- return $this;
- }
- public function hasSwiftPrefix()
- {
- return $this->has_swift_prefix;
- }
- /**
- * Sets the php class prefix which is prepended to all php generated classes
- * from this .proto. Default is empty.
- *
- * Generated from protobuf field <code>optional string php_class_prefix = 40;</code>
- * @return string
- */
- public function getPhpClassPrefix()
- {
- return $this->php_class_prefix;
- }
- /**
- * Sets the php class prefix which is prepended to all php generated classes
- * from this .proto. Default is empty.
- *
- * Generated from protobuf field <code>optional string php_class_prefix = 40;</code>
- * @param string $var
- * @return $this
- */
- public function setPhpClassPrefix($var)
- {
- GPBUtil::checkString($var, True);
- $this->php_class_prefix = $var;
- $this->has_php_class_prefix = true;
- return $this;
- }
- public function hasPhpClassPrefix()
- {
- return $this->has_php_class_prefix;
- }
- /**
- * Use this option to change the namespace of php generated classes. Default
- * is empty. When this option is empty, the package name will be used for
- * determining the namespace.
- *
- * Generated from protobuf field <code>optional string php_namespace = 41;</code>
- * @return string
- */
- public function getPhpNamespace()
- {
- return $this->php_namespace;
- }
- /**
- * Use this option to change the namespace of php generated classes. Default
- * is empty. When this option is empty, the package name will be used for
- * determining the namespace.
- *
- * Generated from protobuf field <code>optional string php_namespace = 41;</code>
- * @param string $var
- * @return $this
- */
- public function setPhpNamespace($var)
- {
- GPBUtil::checkString($var, True);
- $this->php_namespace = $var;
- $this->has_php_namespace = true;
- return $this;
- }
- public function hasPhpNamespace()
- {
- return $this->has_php_namespace;
- }
- /**
- * The parser stores options it doesn't recognize here.
- * See the documentation for the "Options" section above.
- *
- * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getUninterpretedOption()
- {
- return $this->uninterpreted_option;
- }
- /**
- * The parser stores options it doesn't recognize here.
- * See the documentation for the "Options" section above.
- *
- * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;</code>
- * @param \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setUninterpretedOption($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\UninterpretedOption::class);
- $this->uninterpreted_option = $arr;
- $this->has_uninterpreted_option = true;
- return $this;
- }
- public function hasUninterpretedOption()
- {
- return $this->has_uninterpreted_option;
- }
- }
|