Class: TencentCloud::Mmps::V20200710::CreateAppScanTaskRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mmps::V20200710::CreateAppScanTaskRequest
- Defined in:
- lib/v20200710/models.rb
Overview
CreateAppScanTask请求参数结构体
Instance Attribute Summary collapse
- #AppName ⇒ Object
- #AppPackage ⇒ Object
- #AppVersion ⇒ Object
- #ContactName ⇒ Object
- #CorpName ⇒ Object
- #Email ⇒ Object
- #Platform ⇒ Object
- #SalesPerson ⇒ Object
- #Source ⇒ Object
- #TaskType ⇒ Object
- #TelNumber ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tasktype = nil, source = nil, apppackage = nil, platform = nil, appname = nil, appversion = nil, contactname = nil, telnumber = nil, corpname = nil, salesperson = nil, email = nil) ⇒ CreateAppScanTaskRequest
constructor
A new instance of CreateAppScanTaskRequest.
Constructor Details
#initialize(tasktype = nil, source = nil, apppackage = nil, platform = nil, appname = nil, appversion = nil, contactname = nil, telnumber = nil, corpname = nil, salesperson = nil, email = nil) ⇒ CreateAppScanTaskRequest
Returns a new instance of CreateAppScanTaskRequest.
214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/v20200710/models.rb', line 214 def initialize(tasktype=nil, source=nil, apppackage=nil, platform=nil, appname=nil, appversion=nil, contactname=nil, telnumber=nil, corpname=nil, salesperson=nil, email=nil) @TaskType = tasktype @Source = source @AppPackage = apppackage @Platform = platform @AppName = appname @AppVersion = appversion @ContactName = contactname @TelNumber = telnumber @CorpName = corpname @SalesPerson = salesperson @Email = email end |
Instance Attribute Details
#AppName ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def AppName @AppName end |
#AppPackage ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def AppPackage @AppPackage end |
#AppVersion ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def AppVersion @AppVersion end |
#ContactName ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def ContactName @ContactName end |
#CorpName ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def CorpName @CorpName end |
#Email ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def Email @Email end |
#Platform ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def Platform @Platform end |
#SalesPerson ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def SalesPerson @SalesPerson end |
#Source ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def Source @Source end |
#TaskType ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def TaskType @TaskType end |
#TelNumber ⇒ Object
212 213 214 |
# File 'lib/v20200710/models.rb', line 212 def TelNumber @TelNumber end |
Instance Method Details
#deserialize(params) ⇒ Object
228 229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'lib/v20200710/models.rb', line 228 def deserialize(params) @TaskType = params['TaskType'] @Source = params['Source'] @AppPackage = params['AppPackage'] @Platform = params['Platform'] @AppName = params['AppName'] @AppVersion = params['AppVersion'] @ContactName = params['ContactName'] @TelNumber = params['TelNumber'] @CorpName = params['CorpName'] @SalesPerson = params['SalesPerson'] @Email = params['Email'] end |