Skip to content

Commit 8f335cd

Browse files
committed
Update API RecognizeEduPaperCut: add param OutputOricoord.
1 parent f55b7a7 commit 8f335cd

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

AlibabacloudOcrApi20210707.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "AlibabacloudOcrApi20210707"
4-
spec.version = "3.1.0"
4+
spec.version = "3.1.1"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud ocr-api (20210707) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/ocr-api-20210707"

README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
要使用 [Carthage](https://github.com/Carthage/Carthage)`AlibabacloudOcrApi20210707` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.0"
20+
github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.1"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.0"
2626

2727
```swift
2828
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")
3030
]
3131
```
3232

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
1717
To integrate `AlibabacloudOcrApi20210707` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.0"
20+
github "alibabacloud-sdk-swift/ocr-api-20210707" "3.1.1"
2121
```
2222

2323
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudOcrApi20210707` into your Xcode project using [Swift P
2626

2727
```swift
2828
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")
3030
]
3131
```
3232

Sources/AlibabacloudOcrApi20210707/Client.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -884,6 +884,9 @@ open class Client : AlibabacloudOpenApi.Client {
884884
if (!TeaUtils.Client.isUnset(request.imageType)) {
885885
query["ImageType"] = request.imageType ?? "";
886886
}
887+
if (!TeaUtils.Client.isUnset(request.outputOricoord)) {
888+
query["OutputOricoord"] = request.outputOricoord!;
889+
}
887890
if (!TeaUtils.Client.isUnset(request.subject)) {
888891
query["Subject"] = request.subject ?? "";
889892
}

Sources/AlibabacloudOcrApi20210707/Models.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6623,6 +6623,8 @@ public class RecognizeEduPaperCutRequest : Tea.TeaModel {
66236623

66246624
public var imageType: String?
66256625

6626+
public var outputOricoord: Bool?
6627+
66266628
public var subject: String?
66276629

66286630
public var url: String?
@@ -6649,6 +6651,9 @@ public class RecognizeEduPaperCutRequest : Tea.TeaModel {
66496651
if self.imageType != nil {
66506652
map["ImageType"] = self.imageType!
66516653
}
6654+
if self.outputOricoord != nil {
6655+
map["OutputOricoord"] = self.outputOricoord!
6656+
}
66526657
if self.subject != nil {
66536658
map["Subject"] = self.subject!
66546659
}
@@ -6668,6 +6673,9 @@ public class RecognizeEduPaperCutRequest : Tea.TeaModel {
66686673
if dict.keys.contains("ImageType") {
66696674
self.imageType = dict["ImageType"] as! String
66706675
}
6676+
if dict.keys.contains("OutputOricoord") {
6677+
self.outputOricoord = dict["OutputOricoord"] as! Bool
6678+
}
66716679
if dict.keys.contains("Subject") {
66726680
self.subject = dict["Subject"] as! String
66736681
}

0 commit comments

Comments
 (0)