Class: TencentCloud::Irp::V20220805::ReportFeedBehaviorRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Irp::V20220805::ReportFeedBehaviorRequest
- Defined in:
- lib/v20220805/models.rb
Overview
ReportFeedBehavior请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, feedbehaviorlist = nil) ⇒ ReportFeedBehaviorRequest
constructor
A new instance of ReportFeedBehaviorRequest.
Constructor Details
#initialize(instanceid = nil, feedbehaviorlist = nil) ⇒ ReportFeedBehaviorRequest
Returns a new instance of ReportFeedBehaviorRequest.
827 828 829 830 |
# File 'lib/v20220805/models.rb', line 827 def initialize(instanceid=nil, feedbehaviorlist=nil) @InstanceId = instanceid @FeedBehaviorList = feedbehaviorlist end |
Instance Attribute Details
#FeedBehaviorList ⇒ Object
825 826 827 |
# File 'lib/v20220805/models.rb', line 825 def FeedBehaviorList @FeedBehaviorList end |
#InstanceId ⇒ Object
825 826 827 |
# File 'lib/v20220805/models.rb', line 825 def InstanceId @InstanceId end |
Instance Method Details
#deserialize(params) ⇒ Object
832 833 834 835 836 837 838 839 840 841 842 |
# File 'lib/v20220805/models.rb', line 832 def deserialize(params) @InstanceId = params['InstanceId'] unless params['FeedBehaviorList'].nil? @FeedBehaviorList = [] params['FeedBehaviorList'].each do |i| feedbehaviorinfo_tmp = FeedBehaviorInfo.new feedbehaviorinfo_tmp.deserialize(i) @FeedBehaviorList << feedbehaviorinfo_tmp end end end |