id = $data['id']; $this->timestamp = $data['timestamp']; $this->player_id = $data['player_id']; $this->operator_id = $data['operator_id']; $this->operator_brand_id = $data['operator_brand_id']; $this->ext_player_id = $data['ext_player_id']; $this->currency = $data['currency']; $this->type = $data['type']; $this->sum = $data['sum']; $this->k = $data['k']; $this->is_quick_bet = $data['is_quick_bet']; $this->bets = array_map(function ($bet) { return new BetItem($bet); }, $data['bets']); } }