footer * @param bool $clickTrack Initialization value for $this->clickTrack * @param bool $openTrack Initialization value for $this->openTrack * @param bool $unsubscribeTrack Initialization value for $this->unsubscribeTrack * @param bool $hepf Initialization value for $this->hepf */ public function __construct() { if (5 == func_num_args()) { $this->footer = func_get_arg(0); $this->clickTrack = func_get_arg(1); $this->openTrack = func_get_arg(2); $this->unsubscribeTrack = func_get_arg(3); $this->hepf = func_get_arg(4); } } /** * Encode this object to JSON */ #[\ReturnTypeWillChange] public function jsonSerialize() { $json = array(); $json['footer'] = $this->footer; $json['click_track'] = $this->clickTrack; $json['open_track'] = $this->openTrack; $json['unsubscribe_track'] = $this->unsubscribeTrack; $json['hepf'] = $this->hepf; return $json; } }