Class: TencentCloud::Cdb::V20170320::DescribeAuditRuleTemplateModifyHistoryResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdb::V20170320::DescribeAuditRuleTemplateModifyHistoryResponse
- Defined in:
- lib/v20170320/models.rb
Overview
DescribeAuditRuleTemplateModifyHistory返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeAuditRuleTemplateModifyHistoryResponse
constructor
A new instance of DescribeAuditRuleTemplateModifyHistoryResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeAuditRuleTemplateModifyHistoryResponse
Returns a new instance of DescribeAuditRuleTemplateModifyHistoryResponse.
4858 4859 4860 4861 4862 |
# File 'lib/v20170320/models.rb', line 4858 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4856 4857 4858 |
# File 'lib/v20170320/models.rb', line 4856 def Items @Items end |
#RequestId ⇒ Object
4856 4857 4858 |
# File 'lib/v20170320/models.rb', line 4856 def RequestId @RequestId end |
#TotalCount ⇒ Object
4856 4857 4858 |
# File 'lib/v20170320/models.rb', line 4856 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 |
# File 'lib/v20170320/models.rb', line 4864 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| ruletemplaterecordinfo_tmp = RuleTemplateRecordInfo.new ruletemplaterecordinfo_tmp.deserialize(i) @Items << ruletemplaterecordinfo_tmp end end @RequestId = params['RequestId'] end |