Class: TencentCloud::Monitor::V20180724::DescribeSSOAccountResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Monitor::V20180724::DescribeSSOAccountResponse
- Defined in:
- lib/v20180724/models.rb
Overview
DescribeSSOAccount返回参数结构体
Instance Attribute Summary collapse
-
#AccountSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(accountset = nil, requestid = nil) ⇒ DescribeSSOAccountResponse
constructor
A new instance of DescribeSSOAccountResponse.
Constructor Details
#initialize(accountset = nil, requestid = nil) ⇒ DescribeSSOAccountResponse
Returns a new instance of DescribeSSOAccountResponse.
9651 9652 9653 9654 |
# File 'lib/v20180724/models.rb', line 9651 def initialize(accountset=nil, requestid=nil) @AccountSet = accountset @RequestId = requestid end |
Instance Attribute Details
#AccountSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
9649 9650 9651 |
# File 'lib/v20180724/models.rb', line 9649 def AccountSet @AccountSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
9649 9650 9651 |
# File 'lib/v20180724/models.rb', line 9649 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 |
# File 'lib/v20180724/models.rb', line 9656 def deserialize(params) unless params['AccountSet'].nil? @AccountSet = [] params['AccountSet'].each do |i| grafanaaccountinfo_tmp = GrafanaAccountInfo.new grafanaaccountinfo_tmp.deserialize(i) @AccountSet << grafanaaccountinfo_tmp end end @RequestId = params['RequestId'] end |