Class: TencentCloud::Apigateway::V20180808::DescribeServiceUsagePlanResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::DescribeServiceUsagePlanResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeServiceUsagePlan返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(result = nil, requestid = nil) ⇒ DescribeServiceUsagePlanResponse
constructor
A new instance of DescribeServiceUsagePlanResponse.
Constructor Details
#initialize(result = nil, requestid = nil) ⇒ DescribeServiceUsagePlanResponse
Returns a new instance of DescribeServiceUsagePlanResponse.
5670 5671 5672 5673 |
# File 'lib/v20180808/models.rb', line 5670 def initialize(result=nil, requestid=nil) @Result = result @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5668 5669 5670 |
# File 'lib/v20180808/models.rb', line 5668 def RequestId @RequestId end |
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5668 5669 5670 |
# File 'lib/v20180808/models.rb', line 5668 def Result @Result end |
Instance Method Details
#deserialize(params) ⇒ Object
5675 5676 5677 5678 5679 5680 5681 |
# File 'lib/v20180808/models.rb', line 5675 def deserialize(params) unless params['Result'].nil? @Result = ServiceUsagePlanSet.new @Result.deserialize(params['Result']) end @RequestId = params['RequestId'] end |