Automattic\WooCommerce\StoreApi\Routes\V1\Agentic\Messages

MessageInfo::is_errorpublicWC 1.0

Check if the message is an error.

Method of the class: MessageInfo{}

No Hooks.

Returns

true|false. True if the message is an error, false otherwise.

Usage

$MessageInfo = new MessageInfo();
$MessageInfo->is_error(): bool;

MessageInfo::is_error() code WC 10.8.1

public function is_error(): bool {
	return false;
}