Class: TencentCloud::Dbbrain::V20210527::DescribeSqlFiltersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::DescribeSqlFiltersResponse
- Defined in:
- lib/v20210527/models.rb
Overview
DescribeSqlFilters返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeSqlFiltersResponse
constructor
A new instance of DescribeSqlFiltersResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeSqlFiltersResponse
Returns a new instance of DescribeSqlFiltersResponse.
4698 4699 4700 4701 4702 |
# File 'lib/v20210527/models.rb', line 4698 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4696 4697 4698 |
# File 'lib/v20210527/models.rb', line 4696 def Items @Items end |
#RequestId ⇒ Object
4696 4697 4698 |
# File 'lib/v20210527/models.rb', line 4696 def RequestId @RequestId end |
#TotalCount ⇒ Object
4696 4697 4698 |
# File 'lib/v20210527/models.rb', line 4696 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 |
# File 'lib/v20210527/models.rb', line 4704 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| sqlfilter_tmp = SQLFilter.new sqlfilter_tmp.deserialize(i) @Items << sqlfilter_tmp end end @RequestId = params['RequestId'] end |