We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f7059 commit 92bc481Copy full SHA for 92bc481
1 file changed
src/Syntax/SteamApi/Containers/App.php
@@ -57,6 +57,8 @@ class App extends BaseContainer
57
public $achievements;
58
59
public $dlc;
60
+
61
+ public $movies;
62
63
public function __construct($app)
64
{
@@ -87,6 +89,7 @@ public function __construct($app)
87
89
$this->recommendations = $this->checkIssetField($app, 'recommendations', $this->getFakeRecommendationsObject());
88
90
$this->achievements = $this->checkIssetField($app, 'achievements', $this->getFakeAchievementsObject());
91
$this->dlc = $this->checkIssetCollection($app, 'dlc', new Collection());
92
+ $this->movies = $this->checkIssetCollection($app, 'movies', new Collection());
93
94
}
95
0 commit comments