Class: TencentCloud::Apigateway::V20180808::DescribeUsagePlanSecretIdsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::DescribeUsagePlanSecretIdsResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeUsagePlanSecretIds返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(result = nil, requestid = nil) ⇒ DescribeUsagePlanSecretIdsResponse
constructor
A new instance of DescribeUsagePlanSecretIdsResponse.
Constructor Details
#initialize(result = nil, requestid = nil) ⇒ DescribeUsagePlanSecretIdsResponse
Returns a new instance of DescribeUsagePlanSecretIdsResponse.
6031 6032 6033 6034 |
# File 'lib/v20180808/models.rb', line 6031 def initialize(result=nil, requestid=nil) @Result = result @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6029 6030 6031 |
# File 'lib/v20180808/models.rb', line 6029 def RequestId @RequestId end |
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6029 6030 6031 |
# File 'lib/v20180808/models.rb', line 6029 def Result @Result end |
Instance Method Details
#deserialize(params) ⇒ Object
6036 6037 6038 6039 6040 6041 6042 |
# File 'lib/v20180808/models.rb', line 6036 def deserialize(params) unless params['Result'].nil? @Result = UsagePlanBindSecretStatus.new @Result.deserialize(params['Result']) end @RequestId = params['RequestId'] end |