Class: TencentCloud::Apigateway::V20180808::DescribeUsagePlanResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::DescribeUsagePlanResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeUsagePlan返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(result = nil, requestid = nil) ⇒ DescribeUsagePlanResponse
constructor
A new instance of DescribeUsagePlanResponse.
Constructor Details
#initialize(result = nil, requestid = nil) ⇒ DescribeUsagePlanResponse
Returns a new instance of DescribeUsagePlanResponse.
5983 5984 5985 5986 |
# File 'lib/v20180808/models.rb', line 5983 def initialize(result=nil, requestid=nil) @Result = result @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5981 5982 5983 |
# File 'lib/v20180808/models.rb', line 5981 def RequestId @RequestId end |
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5981 5982 5983 |
# File 'lib/v20180808/models.rb', line 5981 def Result @Result end |
Instance Method Details
#deserialize(params) ⇒ Object
5988 5989 5990 5991 5992 5993 5994 |
# File 'lib/v20180808/models.rb', line 5988 def deserialize(params) unless params['Result'].nil? @Result = UsagePlanInfo.new @Result.deserialize(params['Result']) end @RequestId = params['RequestId'] end |