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 = "3.1.0 "
4
+ spec . version = "3.1.1 "
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" "3.1.0 "
20
+ github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.1 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.0"
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/ocr-api-20210707.git" , from : " 3.1.0 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/ocr-api-20210707.git" , from : " 3.1.1 " )
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" "3.1.0 "
20
+ github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.1 "
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 : " 3.1.0 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/ocr-api-20210707.git" , from : " 3.1.1 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -884,6 +884,9 @@ open class Client : AlibabacloudOpenApi.Client {
884
884
if ( !TeaUtils. Client. isUnset ( request. imageType) ) {
885
885
query [ " ImageType " ] = request. imageType ?? " " ;
886
886
}
887
+ if ( !TeaUtils. Client. isUnset ( request. outputOricoord) ) {
888
+ query [ " OutputOricoord " ] = request. outputOricoord!;
889
+ }
887
890
if ( !TeaUtils. Client. isUnset ( request. subject) ) {
888
891
query [ " Subject " ] = request. subject ?? " " ;
889
892
}
Original file line number Diff line number Diff line change @@ -6623,6 +6623,8 @@ public class RecognizeEduPaperCutRequest : Tea.TeaModel {
6623
6623
6624
6624
public var imageType : String ?
6625
6625
6626
+ public var outputOricoord : Bool ?
6627
+
6626
6628
public var subject : String ?
6627
6629
6628
6630
public var url : String ?
@@ -6649,6 +6651,9 @@ public class RecognizeEduPaperCutRequest : Tea.TeaModel {
6649
6651
if self . imageType != nil {
6650
6652
map [ " ImageType " ] = self . imageType!
6651
6653
}
6654
+ if self . outputOricoord != nil {
6655
+ map [ " OutputOricoord " ] = self . outputOricoord!
6656
+ }
6652
6657
if self . subject != nil {
6653
6658
map [ " Subject " ] = self . subject!
6654
6659
}
@@ -6668,6 +6673,9 @@ public class RecognizeEduPaperCutRequest : Tea.TeaModel {
6668
6673
if dict. keys. contains ( " ImageType " ) {
6669
6674
self . imageType = dict [ " ImageType " ] as! String
6670
6675
}
6676
+ if dict. keys. contains ( " OutputOricoord " ) {
6677
+ self . outputOricoord = dict [ " OutputOricoord " ] as! Bool
6678
+ }
6671
6679
if dict. keys. contains ( " Subject " ) {
6672
6680
self . subject = dict [ " Subject " ] as! String
6673
6681
}
You can’t perform that action at this time.
0 commit comments