Class: TencentCloud::Vod::V20180717::DescribeRoundPlaysRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::DescribeRoundPlaysRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20180717/models.rb
Overview
DescribeRoundPlays请求参数结构体
Instance Attribute Summary collapse
- #CreateTime ⇒ Object
- #Limit ⇒ Object
- #Offset ⇒ Object
- #RoundPlayIds ⇒ Object
- #ScrollToken ⇒ Object
- #Status ⇒ Object
- #SubAppId ⇒ Object
- #UpdateTime ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(subappid = nil, roundplayids = nil, status = nil, createtime = nil, updatetime = nil, scrolltoken = nil, offset = nil, limit = nil) ⇒ DescribeRoundPlaysRequest
constructor
A new instance of DescribeRoundPlaysRequest.
Constructor Details
#initialize(subappid = nil, roundplayids = nil, status = nil, createtime = nil, updatetime = nil, scrolltoken = nil, offset = nil, limit = nil) ⇒ DescribeRoundPlaysRequest
Returns a new instance of DescribeRoundPlaysRequest.
12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 |
# File 'lib/v20180717/models.rb', line 12188 def initialize(subappid=nil, roundplayids=nil, status=nil, createtime=nil, updatetime=nil, scrolltoken=nil, offset=nil, limit=nil) @SubAppId = subappid @RoundPlayIds = roundplayids @Status = status @CreateTime = createtime @UpdateTime = updatetime @ScrollToken = scrolltoken @Offset = offset @Limit = limit end |
Instance Attribute Details
#CreateTime ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def CreateTime @CreateTime end |
#Limit ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def Limit @Limit end |
#Offset ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def Offset @Offset end |
#RoundPlayIds ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def RoundPlayIds @RoundPlayIds end |
#ScrollToken ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def ScrollToken @ScrollToken end |
#Status ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def Status @Status end |
#SubAppId ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def SubAppId @SubAppId end |
#UpdateTime ⇒ Object
12183 12184 12185 |
# File 'lib/v20180717/models.rb', line 12183 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 |
# File 'lib/v20180717/models.rb', line 12199 def deserialize(params) @SubAppId = params['SubAppId'] @RoundPlayIds = params['RoundPlayIds'] @Status = params['Status'] unless params['CreateTime'].nil? @CreateTime = TimeRange.new @CreateTime.deserialize(params['CreateTime']) end unless params['UpdateTime'].nil? @UpdateTime = TimeRange.new @UpdateTime.deserialize(params['UpdateTime']) end @ScrollToken = params['ScrollToken'] @Offset = params['Offset'] @Limit = params['Limit'] end |