breakdowns = $breakdowns; } /** * @return Breakdown[] */ public function getBreakdowns() { return $this->breakdowns; } /** * Optional. Message summarizing the overall impact of the issue. If present, * it should be rendered to the merchant. For example: "Disapproves 90k offers * in 25 countries" * * @param string $message */ public function setMessage($message) { $this->message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * The severity of the issue. * * Accepted values: SEVERITY_UNSPECIFIED, ERROR, WARNING, INFO * * @param self::SEVERITY_* $severity */ public function setSeverity($severity) { $this->severity = $severity; } /** * @return self::SEVERITY_* */ public function getSeverity() { return $this->severity; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountIssueImpact::class, 'Google_Service_ShoppingContent_AccountIssueImpact');