File tree Expand file tree Collapse file tree 5 files changed +16
-5
lines changed
Sources/AlibabacloudOcrApi20210707 Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
3
3
spec . name = "AlibabacloudOcrApi20210707"
4
- spec . version = "2.0.5 "
4
+ spec . version = "2.0.6 "
5
5
spec . license = "Apache 2.0"
6
6
spec . summary = "Alibaba Cloud ocr-api (20210707) SDK Library for Swift"
7
7
spec . homepage = "https://github.com/alibabacloud-sdk-swift/ocr-api-20210707"
Original file line number Diff line number Diff line change 17
17
要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudOcrApi20210707 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/ocr-api-20210707" "2.0.5 "
20
+ github "alibabacloud-sdk-swift/ocr-api-20210707" "2.0.6 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ocr-api-20210707" "2.0.5"
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/ocr-api-20210707.git" , from : " 2.0.5 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/ocr-api-20210707.git" , from : " 2.0.6 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
17
17
To integrate ` AlibabacloudOcrApi20210707 ` into your Xcode project using [ Carthage] ( https://github.com/Carthage/Carthage ) , specify it in your ` Cartfile ` :
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/ocr-api-20210707" "2.0.5 "
20
+ github "alibabacloud-sdk-swift/ocr-api-20210707" "2.0.6 "
21
21
```
22
22
23
23
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudOcrApi20210707` into your Xcode project using [Swift P
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/ocr-api-20210707.git" , from : " 2.0.5 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/ocr-api-20210707.git" , from : " 2.0.6 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -1802,6 +1802,9 @@ open class Client : AlibabacloudOpenApi.Client {
1802
1802
public func recognizeMixedInvoicesWithOptions( _ request: RecognizeMixedInvoicesRequest , _ runtime: TeaUtils . RuntimeOptions ) async throws -> RecognizeMixedInvoicesResponse {
1803
1803
try TeaUtils . Client. validateModel ( request)
1804
1804
var query : [ String : Any ] = [ : ]
1805
+ if ( !TeaUtils. Client. isUnset ( request. mergePdfPages) ) {
1806
+ query [ " MergePdfPages " ] = request. mergePdfPages!;
1807
+ }
1805
1808
if ( !TeaUtils. Client. isUnset ( request. pageNo) ) {
1806
1809
query [ " PageNo " ] = request. pageNo!;
1807
1810
}
Original file line number Diff line number Diff line change @@ -10408,6 +10408,8 @@ public class RecognizeMedicalDeviceProduceLicenseResponse : Tea.TeaModel {
10408
10408
}
10409
10409
10410
10410
public class RecognizeMixedInvoicesRequest : Tea . TeaModel {
10411
+ public var mergePdfPages : Bool ?
10412
+
10411
10413
public var pageNo : Int32 ?
10412
10414
10413
10415
public var url : String ?
@@ -10428,6 +10430,9 @@ public class RecognizeMixedInvoicesRequest : Tea.TeaModel {
10428
10430
10429
10431
public override func toMap( ) -> [ String : Any ] {
10430
10432
var map = super. toMap ( )
10433
+ if self . mergePdfPages != nil {
10434
+ map [ " MergePdfPages " ] = self . mergePdfPages!
10435
+ }
10431
10436
if self . pageNo != nil {
10432
10437
map [ " PageNo " ] = self . pageNo!
10433
10438
}
@@ -10441,6 +10446,9 @@ public class RecognizeMixedInvoicesRequest : Tea.TeaModel {
10441
10446
}
10442
10447
10443
10448
public override func fromMap( _ dict: [ String : Any ] ) -> Void {
10449
+ if dict. keys. contains ( " MergePdfPages " ) && dict [ " MergePdfPages " ] != nil {
10450
+ self . mergePdfPages = dict [ " MergePdfPages " ] as! Bool
10451
+ }
10444
10452
if dict. keys. contains ( " PageNo " ) && dict [ " PageNo " ] != nil {
10445
10453
self . pageNo = dict [ " PageNo " ] as! Int32
10446
10454
}
You can’t perform that action at this time.
0 commit comments