Class: TencentCloud::Apigateway::V20180808::DescribeApiAppsStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::DescribeApiAppsStatusResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribeApiAppsStatus返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(result = nil, requestid = nil) ⇒ DescribeApiAppsStatusResponse
constructor
A new instance of DescribeApiAppsStatusResponse.
Constructor Details
#initialize(result = nil, requestid = nil) ⇒ DescribeApiAppsStatusResponse
Returns a new instance of DescribeApiAppsStatusResponse.
3646 3647 3648 3649 |
# File 'lib/v20180808/models.rb', line 3646 def initialize(result=nil, requestid=nil) @Result = result @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3644 3645 3646 |
# File 'lib/v20180808/models.rb', line 3644 def RequestId @RequestId end |
#Result ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3644 3645 3646 |
# File 'lib/v20180808/models.rb', line 3644 def Result @Result end |
Instance Method Details
#deserialize(params) ⇒ Object
3651 3652 3653 3654 3655 3656 3657 |
# File 'lib/v20180808/models.rb', line 3651 def deserialize(params) unless params['Result'].nil? @Result = ApiAppInfos.new @Result.deserialize(params['Result']) end @RequestId = params['RequestId'] end |