* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\PsAccounts\Api\Controller\Request; class ShopHealthCheckRequest extends Request { /** @var string */ public $shop_id; /** @var bool */ public $autoheal; public function __construct($values = []) { $values['autoheal'] = array_key_exists('autoheal', $values); parent::__construct($values); } }