Skip to content

Commit 1bcab49

Browse files
committed
Update API GetUserDevice: add response parameters Body.Device.Workshop.
1 parent 7408725 commit 1bcab49

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

AlibabacloudCsas20230120.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 = "AlibabacloudCsas20230120"
4-
spec.version = "1.23.0"
4+
spec.version = "1.23.1"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud csas (20230120) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/csas-20230120"

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)`AlibabacloudCsas20230120` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/csas-20230120" "1.23.0"
20+
github "alibabacloud-sdk-swift/csas-20230120" "1.23.1"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/csas-20230120" "1.23.0"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/csas-20230120.git", from: "1.23.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/csas-20230120.git", from: "1.23.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 `AlibabacloudCsas20230120` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/csas-20230120" "1.23.0"
20+
github "alibabacloud-sdk-swift/csas-20230120" "1.23.1"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/csas-20230120.git", from: "1.23.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/csas-20230120.git", from: "1.23.1")
3030
]
3131
```
3232

Sources/AlibabacloudCsas20230120/Models.swift

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10647,6 +10647,8 @@ public class GetUserDeviceResponseBody : Tea.TeaModel {
1064710647

1064810648
public var username: String?
1064910649

10650+
public var workshop: String?
10651+
1065010652
public override init() {
1065110653
super.init()
1065210654
}
@@ -10753,6 +10755,9 @@ public class GetUserDeviceResponseBody : Tea.TeaModel {
1075310755
if self.username != nil {
1075410756
map["Username"] = self.username!
1075510757
}
10758+
if self.workshop != nil {
10759+
map["Workshop"] = self.workshop!
10760+
}
1075610761
return map
1075710762
}
1075810763

@@ -10857,6 +10862,9 @@ public class GetUserDeviceResponseBody : Tea.TeaModel {
1085710862
if dict.keys.contains("Username") {
1085810863
self.username = dict["Username"] as! String
1085910864
}
10865+
if dict.keys.contains("Workshop") {
10866+
self.workshop = dict["Workshop"] as! String
10867+
}
1086010868
}
1086110869
}
1086210870
public var device: GetUserDeviceResponseBody.Device?
@@ -21970,6 +21978,8 @@ public class ListUserDevicesRequest : Tea.TeaModel {
2197021978

2197121979
public var username: String?
2197221980

21981+
public var workshop: String?
21982+
2197321983
public override init() {
2197421984
super.init()
2197521985
}
@@ -22044,6 +22054,9 @@ public class ListUserDevicesRequest : Tea.TeaModel {
2204422054
if self.username != nil {
2204522055
map["Username"] = self.username!
2204622056
}
22057+
if self.workshop != nil {
22058+
map["Workshop"] = self.workshop!
22059+
}
2204722060
return map
2204822061
}
2204922062

@@ -22108,6 +22121,9 @@ public class ListUserDevicesRequest : Tea.TeaModel {
2210822121
if dict.keys.contains("Username") {
2210922122
self.username = dict["Username"] as! String
2211022123
}
22124+
if dict.keys.contains("Workshop") {
22125+
self.workshop = dict["Workshop"] as! String
22126+
}
2211122127
}
2211222128
}
2211322129

@@ -22204,6 +22220,8 @@ public class ListUserDevicesResponseBody : Tea.TeaModel {
2220422220

2220522221
public var username: String?
2220622222

22223+
public var workshop: String?
22224+
2220722225
public override init() {
2220822226
super.init()
2220922227
}
@@ -22303,6 +22321,9 @@ public class ListUserDevicesResponseBody : Tea.TeaModel {
2230322321
if self.username != nil {
2230422322
map["Username"] = self.username!
2230522323
}
22324+
if self.workshop != nil {
22325+
map["Workshop"] = self.workshop!
22326+
}
2230622327
return map
2230722328
}
2230822329

@@ -22396,6 +22417,9 @@ public class ListUserDevicesResponseBody : Tea.TeaModel {
2239622417
if dict.keys.contains("Username") {
2239722418
self.username = dict["Username"] as! String
2239822419
}
22420+
if dict.keys.contains("Workshop") {
22421+
self.workshop = dict["Workshop"] as! String
22422+
}
2239922423
}
2240022424
}
2240122425
public var devices: [ListUserDevicesResponseBody.Devices]?

0 commit comments

Comments
 (0)