Class: TencentCloud::Tione::V20211111::DescribeBillingResourceGroupResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tione::V20211111::DescribeBillingResourceGroupResponse
- Defined in:
- lib/v20211111/models.rb
Overview
DescribeBillingResourceGroup返回参数结构体
Instance Attribute Summary collapse
-
#InstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ResourceGroupSWType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, instanceset = nil, resourcegroupswtype = nil, requestid = nil) ⇒ DescribeBillingResourceGroupResponse
constructor
A new instance of DescribeBillingResourceGroupResponse.
Constructor Details
#initialize(totalcount = nil, instanceset = nil, resourcegroupswtype = nil, requestid = nil) ⇒ DescribeBillingResourceGroupResponse
Returns a new instance of DescribeBillingResourceGroupResponse.
2535 2536 2537 2538 2539 2540 |
# File 'lib/v20211111/models.rb', line 2535 def initialize(totalcount=nil, instanceset=nil, resourcegroupswtype=nil, requestid=nil) @TotalCount = totalcount @InstanceSet = instanceset @ResourceGroupSWType = resourcegroupswtype @RequestId = requestid end |
Instance Attribute Details
#InstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2533 2534 2535 |
# File 'lib/v20211111/models.rb', line 2533 def InstanceSet @InstanceSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2533 2534 2535 |
# File 'lib/v20211111/models.rb', line 2533 def RequestId @RequestId end |
#ResourceGroupSWType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2533 2534 2535 |
# File 'lib/v20211111/models.rb', line 2533 def ResourceGroupSWType @ResourceGroupSWType end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2533 2534 2535 |
# File 'lib/v20211111/models.rb', line 2533 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 |
# File 'lib/v20211111/models.rb', line 2542 def deserialize(params) @TotalCount = params['TotalCount'] unless params['InstanceSet'].nil? @InstanceSet = [] params['InstanceSet'].each do |i| instance_tmp = Instance.new instance_tmp.deserialize(i) @InstanceSet << instance_tmp end end @ResourceGroupSWType = params['ResourceGroupSWType'] @RequestId = params['RequestId'] end |