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.
1076 1077 1078 1079 1080 |
# File 'lib/v20210108/models.rb', line 1076 def initialize(data=nil, total=nil, requestid=nil) @Data = data @Total = total @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
1074 1075 1076 |
# File 'lib/v20210108/models.rb', line 1074 def Data @Data end |
#RequestId ⇒ Object
1074 1075 1076 |
# File 'lib/v20210108/models.rb', line 1074 def RequestId @RequestId end |
#Total ⇒ Object
1074 1075 1076 |
# File 'lib/v20210108/models.rb', line 1074 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 |
# File 'lib/v20210108/models.rb', line 1082 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 |