automatewoo/includes/Entity/WorkflowTimingVariable.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

40 lines
593 B
PHP

<?php
namespace AutomateWoo\Entity;
/**
* @class WorkflowTimingVariable
* @since 5.1.0
*/
class WorkflowTimingVariable extends WorkflowTimingBase {
const TYPE = 'datetime';
/**
* @var string
*/
protected $variable;
/**
* @param string $variable
*/
public function __construct( $variable ) {
$this->variable = $variable;
}
/**
* @return string
*/
public function get_variable() {
return $this->variable;
}
/**
* @param string $variable
* @return $this
*/
public function set_variable( $variable ) {
$this->variable = $variable;
return $this;
}
}