Class: TencentCloud::Cme::V20191029::FlattenListMediaRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::FlattenListMediaRequest
- Defined in:
- lib/v20191029/models.rb
Overview
FlattenListMedia请求参数结构体
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) ⇒ FlattenListMediaRequest
constructor
A new instance of FlattenListMediaRequest.
Constructor Details
#initialize(platform = nil, classpath = nil, owner = nil, offset = nil, limit = nil, operator = nil) ⇒ FlattenListMediaRequest
Returns a new instance of FlattenListMediaRequest.
2652 2653 2654 2655 2656 2657 2658 2659 |
# File 'lib/v20191029/models.rb', line 2652 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
2650 2651 2652 |
# File 'lib/v20191029/models.rb', line 2650 def ClassPath @ClassPath end |
#Limit ⇒ Object
2650 2651 2652 |
# File 'lib/v20191029/models.rb', line 2650 def Limit @Limit end |
#Offset ⇒ Object
2650 2651 2652 |
# File 'lib/v20191029/models.rb', line 2650 def Offset @Offset end |
#Operator ⇒ Object
2650 2651 2652 |
# File 'lib/v20191029/models.rb', line 2650 def Operator @Operator end |
#Owner ⇒ Object
2650 2651 2652 |
# File 'lib/v20191029/models.rb', line 2650 def Owner @Owner end |
#Platform ⇒ Object
2650 2651 2652 |
# File 'lib/v20191029/models.rb', line 2650 def Platform @Platform end |
Instance Method Details
#deserialize(params) ⇒ Object
2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 |
# File 'lib/v20191029/models.rb', line 2661 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 |