Skip to content

Commit 395af8a

Browse files
committed
Updated Movie to support new properties
Added 'template', 'variables', 'id'
1 parent 12e2b9a commit 395af8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bundled/all.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class Scene extends Base {
6363

6464
class Movie extends Base {
6565
private $api_url = 'https://api.json2video.com/v2/movies';
66-
protected $properties = ['comment', 'draft', 'width', 'height', 'resolution', 'exports', 'quality', 'fps', 'cache'];
66+
protected $properties = ['comment', 'draft', 'width', 'height', 'resolution', 'exports', 'quality', 'fps', 'cache', 'template', 'variables', 'id'];
6767

6868
private $apikey = null;
6969

src/Movie.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class Movie extends Base {
66
private $api_url = 'https://api.json2video.com/v2/movies';
7-
protected $properties = ['comment', 'draft', 'width', 'height', 'resolution', 'exports', 'quality', 'fps', 'cache'];
7+
protected $properties = ['comment', 'draft', 'width', 'height', 'resolution', 'exports', 'quality', 'fps', 'cache', 'template', 'variables', 'id'];
88

99
private $apikey = null;
1010

0 commit comments

Comments
 (0)