Class: TencentCloud::Cvm::V20170312::DescribeInternetChargeTypeConfigsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cvm::V20170312::DescribeInternetChargeTypeConfigsResponse
- Defined in:
- lib/v20170312/models.rb
Overview
DescribeInternetChargeTypeConfigs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(internetchargetypeconfigset = nil, requestid = nil) ⇒ DescribeInternetChargeTypeConfigsResponse
constructor
A new instance of DescribeInternetChargeTypeConfigsResponse.
Constructor Details
#initialize(internetchargetypeconfigset = nil, requestid = nil) ⇒ DescribeInternetChargeTypeConfigsResponse
Returns a new instance of DescribeInternetChargeTypeConfigsResponse.
2693 2694 2695 2696 |
# File 'lib/v20170312/models.rb', line 2693 def initialize(internetchargetypeconfigset=nil, requestid=nil) @InternetChargeTypeConfigSet = internetchargetypeconfigset @RequestId = requestid end |
Instance Attribute Details
#InternetChargeTypeConfigSet ⇒ Object
2691 2692 2693 |
# File 'lib/v20170312/models.rb', line 2691 def InternetChargeTypeConfigSet @InternetChargeTypeConfigSet end |
#RequestId ⇒ Object
2691 2692 2693 |
# File 'lib/v20170312/models.rb', line 2691 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 |
# File 'lib/v20170312/models.rb', line 2698 def deserialize(params) unless params['InternetChargeTypeConfigSet'].nil? @InternetChargeTypeConfigSet = [] params['InternetChargeTypeConfigSet'].each do |i| internetchargetypeconfig_tmp = InternetChargeTypeConfig.new internetchargetypeconfig_tmp.deserialize(i) @InternetChargeTypeConfigSet << internetchargetypeconfig_tmp end end @RequestId = params['RequestId'] end |