addLabelIds = $addLabelIds; } /** * @return string[] */ public function getAddLabelIds() { return $this->addLabelIds; } /** * The IDs of the messages to modify. There is a limit of 1000 ids per * request. * * @param string[] $ids */ public function setIds($ids) { $this->ids = $ids; } /** * @return string[] */ public function getIds() { return $this->ids; } /** * A list of label IDs to remove from messages. * * @param string[] $removeLabelIds */ public function setRemoveLabelIds($removeLabelIds) { $this->removeLabelIds = $removeLabelIds; } /** * @return string[] */ public function getRemoveLabelIds() { return $this->removeLabelIds; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BatchModifyMessagesRequest::class, 'Google_Service_Gmail_BatchModifyMessagesRequest');