Class: TencentCloud::Apigateway::V20180808::DescribeServicesStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::DescribeServicesStatusResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeServicesStatus返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(result = nil, requestid = nil) ⇒ DescribeServicesStatusResponse
constructor
A new instance of DescribeServicesStatusResponse.
Constructor Details
#initialize(result = nil, requestid = nil) ⇒ DescribeServicesStatusResponse
Returns a new instance of DescribeServicesStatusResponse.
5725 5726 5727 5728 |
# File 'lib/v20180808/models.rb', line 5725 def initialize(result=nil, requestid=nil) @Result = result @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5723 5724 5725 |
# File 'lib/v20180808/models.rb', line 5723 def RequestId @RequestId end |
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5723 5724 5725 |
# File 'lib/v20180808/models.rb', line 5723 def Result @Result end |
Instance Method Details
#deserialize(params) ⇒ Object
5730 5731 5732 5733 5734 5735 5736 |
# File 'lib/v20180808/models.rb', line 5730 def deserialize(params) unless params['Result'].nil? @Result = ServicesStatus.new @Result.deserialize(params['Result']) end @RequestId = params['RequestId'] end |