2023-05-28 01:43:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* AI Labs extension
|
|
|
|
*
|
|
|
|
* @copyright (c) 2023, privet.fun, https://privet.fun
|
|
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace privet\ailabs\includes;
|
|
|
|
|
|
|
|
class resultSubmit
|
|
|
|
{
|
|
|
|
public string $response;
|
2023-06-01 17:35:15 +00:00
|
|
|
public $responseCodes;
|
2023-10-01 21:08:48 +00:00
|
|
|
public bool $ignore = false;
|
2023-05-28 01:43:21 +00:00
|
|
|
};
|