Class: TencentCloud::Trocket::V20230308::DescribeMigratingTopicListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trocket::V20230308::DescribeMigratingTopicListResponse
- Defined in:
- lib/v20230308/models.rb
Overview
DescribeMigratingTopicList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, migratetopics = nil, requestid = nil) ⇒ DescribeMigratingTopicListResponse
constructor
A new instance of DescribeMigratingTopicListResponse.
Constructor Details
#initialize(totalcount = nil, migratetopics = nil, requestid = nil) ⇒ DescribeMigratingTopicListResponse
Returns a new instance of DescribeMigratingTopicListResponse.
3046 3047 3048 3049 3050 |
# File 'lib/v20230308/models.rb', line 3046 def initialize(totalcount=nil, migratetopics=nil, requestid=nil) @TotalCount = totalcount @MigrateTopics = migratetopics @RequestId = requestid end |
Instance Attribute Details
#MigrateTopics ⇒ Object
3044 3045 3046 |
# File 'lib/v20230308/models.rb', line 3044 def MigrateTopics @MigrateTopics end |
#RequestId ⇒ Object
3044 3045 3046 |
# File 'lib/v20230308/models.rb', line 3044 def RequestId @RequestId end |
#TotalCount ⇒ Object
3044 3045 3046 |
# File 'lib/v20230308/models.rb', line 3044 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 |
# File 'lib/v20230308/models.rb', line 3052 def deserialize(params) @TotalCount = params['TotalCount'] unless params['MigrateTopics'].nil? @MigrateTopics = [] params['MigrateTopics'].each do |i| = .new .deserialize(i) @MigrateTopics << end end @RequestId = params['RequestId'] end |