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
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>.
-
#Filters ⇒ Object
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>.
-
#IsHistory ⇒ Object
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>.
-
#Tags ⇒ Object
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>.
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.
27931 27932 27933 27934 27935 27936 |
# File 'lib/v20180228/models.rb', line 27931 def initialize(filters=nil, ishistory=nil, =nil, exportmonth=nil) @Filters = filters @IsHistory = ishistory @Tags = @ExportMonth = exportmonth end |
Instance Attribute Details
#ExportMonth ⇒ Object
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>
27929 27930 27931 |
# File 'lib/v20180228/models.rb', line 27929 def ExportMonth @ExportMonth end |
#Filters ⇒ Object
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>
27929 27930 27931 |
# File 'lib/v20180228/models.rb', line 27929 def Filters @Filters end |
#IsHistory ⇒ Object
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>
27929 27930 27931 |
# File 'lib/v20180228/models.rb', line 27929 def IsHistory @IsHistory end |
#Tags ⇒ Object
<li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li> <li>ResourceId 资源ID</li>
27929 27930 27931 |
# File 'lib/v20180228/models.rb', line 27929 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 |
# File 'lib/v20180228/models.rb', line 27938 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 |