# packeta/2.3.2/src/Packetery/Module/SurveyConfig.php

Packeta, version 2.3.2. 51 lines.

- Page: https://pluginprobe.com/plugins/packeta/2.3.2/code/src/Packetery/Module/SurveyConfig.php
- Raw: https://pluginprobe.com/plugins/packeta/2.3.2/raw/src/Packetery/Module/SurveyConfig.php
- Modified: 2025-03-10T10:47:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/2.3.2/code/src/Packetery/Module/SurveyConfig.php#L10-L20`.

```php
<?php
/**
 * Class SurveyConfig
 *
 * @package Packetery
 */

namespace Packetery\Module;

/**
 * Class SurveyConfig
 *
 * @package Packetery
 */
class SurveyConfig {

	/**
	 * Tells whether to display.
	 *
	 * @var bool
	 */
	public $active;

	/**
	 * Survey URL.
	 *
	 * @var string
	 */
	public $url;

	/**
	 * Survey visual.
	 *
	 * @var string
	 */
	public $image;

	/**
	 * SurveyConfig constructor.
	 *
	 * @param bool   $active Active.
	 * @param string $url    Url.
	 * @param string $image  Image.
	 */
	public function __construct( bool $active, string $url, string $image ) {
		$this->active = $active;
		$this->url    = $url;
		$this->image  = $image;
	}
}

```
