Class: TencentCloud::Cwp::V20180228::ExportLicenseDetailRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportLicenseDetailRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportLicenseDetail请求参数结构体
Instance Attribute Summary collapse
-
#ExportMonth ⇒ Object
- LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
- ResourceId 资源ID
. -
#Filters ⇒ Object
- LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
- ResourceId 资源ID
. -
#IsHistory ⇒ Object
- LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
- ResourceId 资源ID
. -
#Tags ⇒ Object
- LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
- ResourceId 资源ID
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, ishistory = nil, tags = nil, exportmonth = nil) ⇒ ExportLicenseDetailRequest
constructor
A new instance of ExportLicenseDetailRequest.
Constructor Details
#initialize(filters = nil, ishistory = nil, tags = nil, exportmonth = nil) ⇒ ExportLicenseDetailRequest
Returns a new instance of ExportLicenseDetailRequest.
27470 27471 27472 27473 27474 27475 |
# File 'lib/v20180228/models.rb', line 27470 def initialize(filters=nil, ishistory=nil, =nil, exportmonth=nil) @Filters = filters @IsHistory = ishistory @Tags = @ExportMonth = exportmonth end |
Instance Attribute Details
#ExportMonth ⇒ Object
27468 27469 27470 |
# File 'lib/v20180228/models.rb', line 27468 def ExportMonth @ExportMonth end |
#Filters ⇒ Object
27468 27469 27470 |
# File 'lib/v20180228/models.rb', line 27468 def Filters @Filters end |
#IsHistory ⇒ Object
27468 27469 27470 |
# File 'lib/v20180228/models.rb', line 27468 def IsHistory @IsHistory end |
#Tags ⇒ Object
27468 27469 27470 |
# File 'lib/v20180228/models.rb', line 27468 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
27477 27478 27479 27480 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492 27493 27494 27495 27496 |
# File 'lib/v20180228/models.rb', line 27477 def deserialize(params) unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filters_tmp = Filters.new filters_tmp.deserialize(i) @Filters << filters_tmp end end @IsHistory = params['IsHistory'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| = Tags.new .deserialize(i) @Tags << end end @ExportMonth = params['ExportMonth'] end |