in lib/Model/TryToGetSlotFormsStartParam.php [249:270]
public function __construct(array $data = null)
{
$this->container['resolution'] = isset($data['resolution']) ? $data['resolution'] : null;
$this->container['keep_alive'] = isset($data['keep_alive']) ? $data['keep_alive'] : null;
$this->container['keep_disconnect_alive'] = isset($data['keep_disconnect_alive']) ? $data['keep_disconnect_alive'] : null;
$this->container['keep_no_play_alive'] = isset($data['keep_no_play_alive']) ? $data['keep_no_play_alive'] : null;
$this->container['device_brand'] = isset($data['device_brand']) ? $data['device_brand'] : null;
$this->container['device_model'] = isset($data['device_model']) ? $data['device_model'] : null;
$this->container['device_dpi'] = isset($data['device_dpi']) ? $data['device_dpi'] : null;
$this->container['device_dpr'] = isset($data['device_dpr']) ? $data['device_dpr'] : null;
$this->container['device_resolution'] = isset($data['device_resolution']) ? $data['device_resolution'] : null;
$this->container['game_input'] = isset($data['game_input']) ? $data['game_input'] : null;
$this->container['script_id'] = isset($data['script_id']) ? $data['script_id'] : null;
$this->container['bit_rate_self_adaption'] = isset($data['bit_rate_self_adaption']) ? $data['bit_rate_self_adaption'] : null;
$this->container['schedule_user_levels'] = isset($data['schedule_user_levels']) ? $data['schedule_user_levels'] : null;
$this->container['ssaid'] = isset($data['ssaid']) ? $data['ssaid'] : null;
$this->container['app_channel'] = isset($data['app_channel']) ? $data['app_channel'] : null;
$this->container['cloud_init'] = isset($data['cloud_init']) ? $data['cloud_init'] : null;
$this->container['sys_device_id'] = isset($data['sys_device_id']) ? $data['sys_device_id'] : null;
$this->container['archive_url'] = isset($data['archive_url']) ? $data['archive_url'] : null;
$this->container['archive_md5'] = isset($data['archive_md5']) ? $data['archive_md5'] : null;
}