Class: TencentCloud::Cwp::V20180228::ExportAssetPlanTaskListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetPlanTaskListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetPlanTaskList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- User- string - 是否必填:否 - 用户
- Status- int - 是否必填:否 - 默认启用状态:0未启用, 1启用
. -
#Filters ⇒ Object
- User- string - 是否必填:否 - 用户
- Status- int - 是否必填:否 - 默认启用状态:0未启用, 1启用
. -
#Order ⇒ Object
- User- string - 是否必填:否 - 用户
- Status- int - 是否必填:否 - 默认启用状态:0未启用, 1启用
. -
#Quuid ⇒ Object
- User- string - 是否必填:否 - 用户
- Status- int - 是否必填:否 - 默认启用状态:0未启用, 1启用
. -
#Uuid ⇒ Object
- User- string - 是否必填:否 - 用户
- Status- int - 是否必填:否 - 默认启用状态:0未启用, 1启用
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(uuid = nil, quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetPlanTaskListRequest
constructor
A new instance of ExportAssetPlanTaskListRequest.
Constructor Details
#initialize(uuid = nil, quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetPlanTaskListRequest
Returns a new instance of ExportAssetPlanTaskListRequest.
25825 25826 25827 25828 25829 25830 25831 |
# File 'lib/v20180228/models.rb', line 25825 def initialize(uuid=nil, quuid=nil, filters=nil, order=nil, by=nil) @Uuid = uuid @Quuid = quuid @Filters = filters @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
25823 25824 25825 |
# File 'lib/v20180228/models.rb', line 25823 def By @By end |
#Filters ⇒ Object
25823 25824 25825 |
# File 'lib/v20180228/models.rb', line 25823 def Filters @Filters end |
#Order ⇒ Object
25823 25824 25825 |
# File 'lib/v20180228/models.rb', line 25823 def Order @Order end |
#Quuid ⇒ Object
25823 25824 25825 |
# File 'lib/v20180228/models.rb', line 25823 def Quuid @Quuid end |
#Uuid ⇒ Object
25823 25824 25825 |
# File 'lib/v20180228/models.rb', line 25823 def Uuid @Uuid end |
Instance Method Details
#deserialize(params) ⇒ Object
25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 |
# File 'lib/v20180228/models.rb', line 25833 def deserialize(params) @Uuid = params['Uuid'] @Quuid = params['Quuid'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| assetfilters_tmp = AssetFilters.new assetfilters_tmp.deserialize(i) @Filters << assetfilters_tmp end end @Order = params['Order'] @By = params['By'] end |