Class: TencentCloud::Tione::V20211111::DescribeSubAccountLinuxUserInfosResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tione::V20211111::DescribeSubAccountLinuxUserInfosResponse
- Defined in:
- lib/v20211111/models.rb
Overview
DescribeSubAccountLinuxUserInfos返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(subaccountlist = nil, requestid = nil) ⇒ DescribeSubAccountLinuxUserInfosResponse
constructor
A new instance of DescribeSubAccountLinuxUserInfosResponse.
Constructor Details
#initialize(subaccountlist = nil, requestid = nil) ⇒ DescribeSubAccountLinuxUserInfosResponse
Returns a new instance of DescribeSubAccountLinuxUserInfosResponse.
3945 3946 3947 3948 |
# File 'lib/v20211111/models.rb', line 3945 def initialize(subaccountlist=nil, requestid=nil) @SubAccountList = subaccountlist @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
3943 3944 3945 |
# File 'lib/v20211111/models.rb', line 3943 def RequestId @RequestId end |
#SubAccountList ⇒ Object
3943 3944 3945 |
# File 'lib/v20211111/models.rb', line 3943 def SubAccountList @SubAccountList end |
Instance Method Details
#deserialize(params) ⇒ Object
3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 |
# File 'lib/v20211111/models.rb', line 3950 def deserialize(params) unless params['SubAccountList'].nil? @SubAccountList = [] params['SubAccountList'].each do |i| subaccountinfo_tmp = SubAccountInfo.new subaccountinfo_tmp.deserialize(i) @SubAccountList << subaccountinfo_tmp end end @RequestId = params['RequestId'] end |