33 lines
567 B
PHP
33 lines
567 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Automation\Integrations\WooCommerce\Payloads;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
use MailPoet\Automation\Engine\Integration\Payload;
|
|
|
|
class OrderStatusChangePayload implements Payload {
|
|
|
|
/** @var string */
|
|
private $from;
|
|
|
|
/** @var string */
|
|
private $to;
|
|
|
|
public function __construct(
|
|
string $from,
|
|
string $to
|
|
) {
|
|
$this->from = $from;
|
|
$this->to = $to;
|
|
}
|
|
|
|
public function getFrom(): string {
|
|
return $this->from;
|
|
}
|
|
|
|
public function getTo(): string {
|
|
return $this->to;
|
|
}
|
|
}
|