@@ -11947,6 +11947,8 @@ public class CreateMediaLiveChannelRequest : Tea.TeaModel {
11947
11947
11948
11948
public var videoCodecSetting: CreateMediaLiveChannelRequest.VideoSettings.VideoCodecSetting?
11949
11949
11950
+ public var videoCodecType: String?
11951
+
11950
11952
public var width: Int32?
11951
11953
11952
11954
public override init() {
@@ -11976,6 +11978,9 @@ public class CreateMediaLiveChannelRequest : Tea.TeaModel {
11976
11978
if self.videoCodecSetting != nil {
11977
11979
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
11978
11980
}
11981
+ if self.videoCodecType != nil {
11982
+ map["VideoCodecType"] = self.videoCodecType!
11983
+ }
11979
11984
if self.width != nil {
11980
11985
map["Width"] = self.width!
11981
11986
}
@@ -11997,6 +12002,9 @@ public class CreateMediaLiveChannelRequest : Tea.TeaModel {
11997
12002
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
11998
12003
self.videoCodecSetting = model
11999
12004
}
12005
+ if dict.keys.contains("VideoCodecType") {
12006
+ self.videoCodecType = dict["VideoCodecType"] as! String
12007
+ }
12000
12008
if dict.keys.contains("Width") {
12001
12009
self.width = dict["Width"] as! Int32
12002
12010
}
@@ -34388,6 +34396,8 @@ public class GetMediaLiveChannelResponseBody : Tea.TeaModel {
34388
34396
34389
34397
public var videoCodecSetting: GetMediaLiveChannelResponseBody.Channel.VideoSettings.VideoCodecSetting?
34390
34398
34399
+ public var videoCodecType: String?
34400
+
34391
34401
public var width: Int32?
34392
34402
34393
34403
public override init() {
@@ -34417,6 +34427,9 @@ public class GetMediaLiveChannelResponseBody : Tea.TeaModel {
34417
34427
if self.videoCodecSetting != nil {
34418
34428
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
34419
34429
}
34430
+ if self.videoCodecType != nil {
34431
+ map["VideoCodecType"] = self.videoCodecType!
34432
+ }
34420
34433
if self.width != nil {
34421
34434
map["Width"] = self.width!
34422
34435
}
@@ -34438,6 +34451,9 @@ public class GetMediaLiveChannelResponseBody : Tea.TeaModel {
34438
34451
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
34439
34452
self.videoCodecSetting = model
34440
34453
}
34454
+ if dict.keys.contains("VideoCodecType") {
34455
+ self.videoCodecType = dict["VideoCodecType"] as! String
34456
+ }
34441
34457
if dict.keys.contains("Width") {
34442
34458
self.width = dict["Width"] as! Int32
34443
34459
}
@@ -56930,6 +56946,8 @@ public class ListMediaLiveChannelsResponseBody : Tea.TeaModel {
56930
56946
56931
56947
public var videoCodecSetting: ListMediaLiveChannelsResponseBody.Channels.VideoSettings.VideoCodecSetting?
56932
56948
56949
+ public var videoCodecType: String?
56950
+
56933
56951
public var width: Int32?
56934
56952
56935
56953
public override init() {
@@ -56959,6 +56977,9 @@ public class ListMediaLiveChannelsResponseBody : Tea.TeaModel {
56959
56977
if self.videoCodecSetting != nil {
56960
56978
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
56961
56979
}
56980
+ if self.videoCodecType != nil {
56981
+ map["VideoCodecType"] = self.videoCodecType!
56982
+ }
56962
56983
if self.width != nil {
56963
56984
map["Width"] = self.width!
56964
56985
}
@@ -56980,6 +57001,9 @@ public class ListMediaLiveChannelsResponseBody : Tea.TeaModel {
56980
57001
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
56981
57002
self.videoCodecSetting = model
56982
57003
}
57004
+ if dict.keys.contains("VideoCodecType") {
57005
+ self.videoCodecType = dict["VideoCodecType"] as! String
57006
+ }
56983
57007
if dict.keys.contains("Width") {
56984
57008
self.width = dict["Width"] as! Int32
56985
57009
}
@@ -99473,6 +99497,8 @@ public class UpdateMediaLiveChannelRequest : Tea.TeaModel {
99473
99497
99474
99498
public var videoCodecSetting: UpdateMediaLiveChannelRequest.VideoSettings.VideoCodecSetting?
99475
99499
99500
+ public var videoCodecType: String?
99501
+
99476
99502
public var width: Int32?
99477
99503
99478
99504
public override init() {
@@ -99502,6 +99528,9 @@ public class UpdateMediaLiveChannelRequest : Tea.TeaModel {
99502
99528
if self.videoCodecSetting != nil {
99503
99529
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
99504
99530
}
99531
+ if self.videoCodecType != nil {
99532
+ map["VideoCodecType"] = self.videoCodecType!
99533
+ }
99505
99534
if self.width != nil {
99506
99535
map["Width"] = self.width!
99507
99536
}
@@ -99523,6 +99552,9 @@ public class UpdateMediaLiveChannelRequest : Tea.TeaModel {
99523
99552
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
99524
99553
self.videoCodecSetting = model
99525
99554
}
99555
+ if dict.keys.contains("VideoCodecType") {
99556
+ self.videoCodecType = dict["VideoCodecType"] as! String
99557
+ }
99526
99558
if dict.keys.contains("Width") {
99527
99559
self.width = dict["Width"] as! Int32
99528
99560
}
0 commit comments