name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The option's value packed in an Any message. If the value is a primitive, * the corresponding wrapper type defined in google/protobuf/wrappers.proto * should be used. If the value is an enum, it should be stored as an int32 * value using the google.protobuf.Int32Value type. * * @param array[] $value */ public function setValue($value) { $this->value = $value; } /** * @return array[] */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Option::class, 'Google_Service_ServiceUsage_Option');