File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import { PlaybackIds } from './resources/playbackIds.js';
12
12
import { Uploads } from './resources/uploads.js' ;
13
13
import { SigningKeys } from './resources/signingKeys.js' ;
14
14
import { DeliveryUsage } from './resources/deliveryUsage.js' ;
15
+ import { PlaybackRestrictions } from './resources/playbackRestrictions.js' ;
15
16
16
17
/**
17
18
* @ignore
@@ -32,6 +33,7 @@ export class Video extends Base {
32
33
readonly Assets : Assets ;
33
34
readonly LiveStreams : LiveStreams ;
34
35
readonly PlaybackIds : PlaybackIds ;
36
+ readonly PlaybackRestrictions : PlaybackRestrictions ;
35
37
readonly Uploads : Uploads ;
36
38
readonly SigningKeys : SigningKeys ;
37
39
readonly DeliveryUsage : DeliveryUsage ;
@@ -69,5 +71,8 @@ export class Video extends Base {
69
71
70
72
/** @Type {DeliveryUsage} */
71
73
this . DeliveryUsage = new DeliveryUsage ( this ) ;
74
+
75
+ /** @Type {PlaybackRestrictions} */
76
+ this . PlaybackRestrictions = new PlaybackRestrictions ( this ) ;
72
77
}
73
78
}
You can’t perform that action at this time.
0 commit comments