@@ -3401,12 +3401,20 @@ public class CreateWmBaseImageResponse : Tea.TeaModel {
3401
3401
3402
3402
public class CreateWmEmbedTaskRequest : Tea.TeaModel {
3403
3403
public class CsvControl : Tea.TeaModel {
3404
+ public var embedBitsNumberInEachTime: Int64?
3405
+
3404
3406
public var embedColumn: Int64?
3405
3407
3408
+ public var embedDensity: String?
3409
+
3406
3410
public var embedPrecision: Int64?
3407
3411
3412
+ public var embedTimePosition: String?
3413
+
3408
3414
public var method: String?
3409
3415
3416
+ public var timeFormat: String?
3417
+
3410
3418
public override init() {
3411
3419
super.init()
3412
3420
}
@@ -3421,28 +3429,52 @@ public class CreateWmEmbedTaskRequest : Tea.TeaModel {
3421
3429
3422
3430
public override func toMap() -> [String : Any] {
3423
3431
var map = super.toMap()
3432
+ if self.embedBitsNumberInEachTime != nil {
3433
+ map["EmbedBitsNumberInEachTime"] = self.embedBitsNumberInEachTime!
3434
+ }
3424
3435
if self.embedColumn != nil {
3425
3436
map["EmbedColumn"] = self.embedColumn!
3426
3437
}
3438
+ if self.embedDensity != nil {
3439
+ map["EmbedDensity"] = self.embedDensity!
3440
+ }
3427
3441
if self.embedPrecision != nil {
3428
3442
map["EmbedPrecision"] = self.embedPrecision!
3429
3443
}
3444
+ if self.embedTimePosition != nil {
3445
+ map["EmbedTimePosition"] = self.embedTimePosition!
3446
+ }
3430
3447
if self.method != nil {
3431
3448
map["Method"] = self.method!
3432
3449
}
3450
+ if self.timeFormat != nil {
3451
+ map["TimeFormat"] = self.timeFormat!
3452
+ }
3433
3453
return map
3434
3454
}
3435
3455
3436
3456
public override func fromMap(_ dict: [String: Any]) -> Void {
3457
+ if dict.keys.contains("EmbedBitsNumberInEachTime") {
3458
+ self.embedBitsNumberInEachTime = dict["EmbedBitsNumberInEachTime"] as! Int64
3459
+ }
3437
3460
if dict.keys.contains("EmbedColumn") {
3438
3461
self.embedColumn = dict["EmbedColumn"] as! Int64
3439
3462
}
3463
+ if dict.keys.contains("EmbedDensity") {
3464
+ self.embedDensity = dict["EmbedDensity"] as! String
3465
+ }
3440
3466
if dict.keys.contains("EmbedPrecision") {
3441
3467
self.embedPrecision = dict["EmbedPrecision"] as! Int64
3442
3468
}
3469
+ if dict.keys.contains("EmbedTimePosition") {
3470
+ self.embedTimePosition = dict["EmbedTimePosition"] as! String
3471
+ }
3443
3472
if dict.keys.contains("Method") {
3444
3473
self.method = dict["Method"] as! String
3445
3474
}
3475
+ if dict.keys.contains("TimeFormat") {
3476
+ self.timeFormat = dict["TimeFormat"] as! String
3477
+ }
3446
3478
}
3447
3479
}
3448
3480
public class DocumentControl : Tea.TeaModel {
@@ -4044,12 +4076,18 @@ public class CreateWmEmbedTaskResponse : Tea.TeaModel {
4044
4076
4045
4077
public class CreateWmExtractTaskRequest : Tea.TeaModel {
4046
4078
public class CsvControl : Tea.TeaModel {
4079
+ public var embedBitsNumberInEachTime: Int64?
4080
+
4047
4081
public var embedColumn: Int64?
4048
4082
4049
4083
public var embedPrecision: Int64?
4050
4084
4085
+ public var embedTimePosition: String?
4086
+
4051
4087
public var method: String?
4052
4088
4089
+ public var timeFormat: String?
4090
+
4053
4091
public override init() {
4054
4092
super.init()
4055
4093
}
@@ -4064,28 +4102,46 @@ public class CreateWmExtractTaskRequest : Tea.TeaModel {
4064
4102
4065
4103
public override func toMap() -> [String : Any] {
4066
4104
var map = super.toMap()
4105
+ if self.embedBitsNumberInEachTime != nil {
4106
+ map["EmbedBitsNumberInEachTime"] = self.embedBitsNumberInEachTime!
4107
+ }
4067
4108
if self.embedColumn != nil {
4068
4109
map["EmbedColumn"] = self.embedColumn!
4069
4110
}
4070
4111
if self.embedPrecision != nil {
4071
4112
map["EmbedPrecision"] = self.embedPrecision!
4072
4113
}
4114
+ if self.embedTimePosition != nil {
4115
+ map["EmbedTimePosition"] = self.embedTimePosition!
4116
+ }
4073
4117
if self.method != nil {
4074
4118
map["Method"] = self.method!
4075
4119
}
4120
+ if self.timeFormat != nil {
4121
+ map["TimeFormat"] = self.timeFormat!
4122
+ }
4076
4123
return map
4077
4124
}
4078
4125
4079
4126
public override func fromMap(_ dict: [String: Any]) -> Void {
4127
+ if dict.keys.contains("EmbedBitsNumberInEachTime") {
4128
+ self.embedBitsNumberInEachTime = dict["EmbedBitsNumberInEachTime"] as! Int64
4129
+ }
4080
4130
if dict.keys.contains("EmbedColumn") {
4081
4131
self.embedColumn = dict["EmbedColumn"] as! Int64
4082
4132
}
4083
4133
if dict.keys.contains("EmbedPrecision") {
4084
4134
self.embedPrecision = dict["EmbedPrecision"] as! Int64
4085
4135
}
4136
+ if dict.keys.contains("EmbedTimePosition") {
4137
+ self.embedTimePosition = dict["EmbedTimePosition"] as! String
4138
+ }
4086
4139
if dict.keys.contains("Method") {
4087
4140
self.method = dict["Method"] as! String
4088
4141
}
4142
+ if dict.keys.contains("TimeFormat") {
4143
+ self.timeFormat = dict["TimeFormat"] as! String
4144
+ }
4089
4145
}
4090
4146
}
4091
4147
public var csvControl: CreateWmExtractTaskRequest.CsvControl?
0 commit comments