applicableShippingLabels = $applicableShippingLabels; } /** * @return string[] */ public function getApplicableShippingLabels() { return $this->applicableShippingLabels; } /** * @param CarrierRate[] */ public function setCarrierRates($carrierRates) { $this->carrierRates = $carrierRates; } /** * @return CarrierRate[] */ public function getCarrierRates() { return $this->carrierRates; } /** * @param Table */ public function setMainTable(Table $mainTable) { $this->mainTable = $mainTable; } /** * @return Table */ public function getMainTable() { return $this->mainTable; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param Value */ public function setSingleValue(Value $singleValue) { $this->singleValue = $singleValue; } /** * @return Value */ public function getSingleValue() { return $this->singleValue; } /** * @param Table[] */ public function setSubtables($subtables) { $this->subtables = $subtables; } /** * @return Table[] */ public function getSubtables() { return $this->subtables; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RateGroup::class, 'Google_Service_ShoppingContent_RateGroup');