Skip to content

Commit d976aef

Browse files
committed
Update API GetMember: add response parameters Body.AccountType.
1 parent 5bcd118 commit d976aef

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

AlibabacloudAIWorkSpace20210204.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 = "AlibabacloudAIWorkSpace20210204"
4-
spec.version = "4.4.0"
4+
spec.version = "4.4.1"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud AIWorkSpace (20210204) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204"

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.0"
20+
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.1"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.0"
2626

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.0"
20+
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.1"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.4.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.4.1")
3030
]
3131
```
3232

Sources/AlibabacloudAIWorkSpace20210204/Models.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12787,6 +12787,8 @@ public class GetMemberRequest : Tea.TeaModel {
1278712787
}
1278812788

1278912789
public class GetMemberResponseBody : Tea.TeaModel {
12790+
public var accountType: String?
12791+
1279012792
public var displayName: String?
1279112793

1279212794
public var gmtCreateTime: String?
@@ -12815,6 +12817,9 @@ public class GetMemberResponseBody : Tea.TeaModel {
1281512817

1281612818
public override func toMap() -> [String : Any] {
1281712819
var map = super.toMap()
12820+
if self.accountType != nil {
12821+
map["AccountType"] = self.accountType!
12822+
}
1281812823
if self.displayName != nil {
1281912824
map["DisplayName"] = self.displayName!
1282012825
}
@@ -12841,6 +12846,9 @@ public class GetMemberResponseBody : Tea.TeaModel {
1284112846

1284212847
public override func fromMap(_ dict: [String: Any?]?) -> Void {
1284312848
guard let dict else { return }
12849+
if let value = dict["AccountType"] as? String {
12850+
self.accountType = value
12851+
}
1284412852
if let value = dict["DisplayName"] as? String {
1284512853
self.displayName = value
1284612854
}
@@ -17310,6 +17318,8 @@ public class ListMembersResponseBody : Tea.TeaModel {
1731017318
public class Members : Tea.TeaModel {
1731117319
public var accountName: String?
1731217320

17321+
public var accountType: String?
17322+
1731317323
public var displayName: String?
1731417324

1731517325
public var gmtCreateTime: String?
@@ -17339,6 +17349,9 @@ public class ListMembersResponseBody : Tea.TeaModel {
1733917349
if self.accountName != nil {
1734017350
map["AccountName"] = self.accountName!
1734117351
}
17352+
if self.accountType != nil {
17353+
map["AccountType"] = self.accountType!
17354+
}
1734217355
if self.displayName != nil {
1734317356
map["DisplayName"] = self.displayName!
1734417357
}
@@ -17365,6 +17378,9 @@ public class ListMembersResponseBody : Tea.TeaModel {
1736517378
if let value = dict["AccountName"] as? String {
1736617379
self.accountName = value
1736717380
}
17381+
if let value = dict["AccountType"] as? String {
17382+
self.accountType = value
17383+
}
1736817384
if let value = dict["DisplayName"] as? String {
1736917385
self.displayName = value
1737017386
}

0 commit comments

Comments
 (0)