Class: TencentCloud::Lowcode::V20210108::DescribeRelatedUsersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lowcode::V20210108::DescribeRelatedUsersResponse
- Defined in:
- lib/v20210108/models.rb
Overview
DescribeRelatedUsers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, total = nil, requestid = nil) ⇒ DescribeRelatedUsersResponse
constructor
A new instance of DescribeRelatedUsersResponse.
Constructor Details
#initialize(data = nil, total = nil, requestid = nil) ⇒ DescribeRelatedUsersResponse
Returns a new instance of DescribeRelatedUsersResponse.
1084 1085 1086 1087 1088 |
# File 'lib/v20210108/models.rb', line 1084 def initialize(data=nil, total=nil, requestid=nil) @Data = data @Total = total @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
1082 1083 1084 |
# File 'lib/v20210108/models.rb', line 1082 def Data @Data end |
#RequestId ⇒ Object
1082 1083 1084 |
# File 'lib/v20210108/models.rb', line 1082 def RequestId @RequestId end |
#Total ⇒ Object
1082 1083 1084 |
# File 'lib/v20210108/models.rb', line 1082 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 |
# File 'lib/v20210108/models.rb', line 1090 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| wedauser_tmp = WedaUser.new wedauser_tmp.deserialize(i) @Data << wedauser_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |