Class: TencentCloud::Cme::V20191029::ListMediaRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::ListMediaRequest
- Defined in:
- lib/v20191029/models.rb
Overview
ListMedia请求参数结构体
Instance Attribute Summary collapse
- #ClassPath ⇒ Object
- #Limit ⇒ Object
- #Offset ⇒ Object
- #Operator ⇒ Object
- #Owner ⇒ Object
- #Platform ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(platform = nil, classpath = nil, owner = nil, offset = nil, limit = nil, operator = nil) ⇒ ListMediaRequest
constructor
A new instance of ListMediaRequest.
Constructor Details
#initialize(platform = nil, classpath = nil, owner = nil, offset = nil, limit = nil, operator = nil) ⇒ ListMediaRequest
Returns a new instance of ListMediaRequest.
3407 3408 3409 3410 3411 3412 3413 3414 |
# File 'lib/v20191029/models.rb', line 3407 def initialize(platform=nil, classpath=nil, owner=nil, offset=nil, limit=nil, operator=nil) @Platform = platform @ClassPath = classpath @Owner = owner @Offset = offset @Limit = limit @Operator = operator end |
Instance Attribute Details
#ClassPath ⇒ Object
3405 3406 3407 |
# File 'lib/v20191029/models.rb', line 3405 def ClassPath @ClassPath end |
#Limit ⇒ Object
3405 3406 3407 |
# File 'lib/v20191029/models.rb', line 3405 def Limit @Limit end |
#Offset ⇒ Object
3405 3406 3407 |
# File 'lib/v20191029/models.rb', line 3405 def Offset @Offset end |
#Operator ⇒ Object
3405 3406 3407 |
# File 'lib/v20191029/models.rb', line 3405 def Operator @Operator end |
#Owner ⇒ Object
3405 3406 3407 |
# File 'lib/v20191029/models.rb', line 3405 def Owner @Owner end |
#Platform ⇒ Object
3405 3406 3407 |
# File 'lib/v20191029/models.rb', line 3405 def Platform @Platform end |
Instance Method Details
#deserialize(params) ⇒ Object
3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 |
# File 'lib/v20191029/models.rb', line 3416 def deserialize(params) @Platform = params['Platform'] @ClassPath = params['ClassPath'] unless params['Owner'].nil? @Owner = Entity.new @Owner.deserialize(params['Owner']) end @Offset = params['Offset'] @Limit = params['Limit'] @Operator = params['Operator'] end |