Class: TencentCloud::Acp::V20220105::AppInfoItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Acp::V20220105::AppInfoItem
- Defined in:
- lib/v20220105/models.rb
Overview
应用合规隐私诊断任务应用数据信息
Instance Attribute Summary collapse
- #AppName ⇒ Object
- #AppPackage ⇒ Object
- #AppVersion ⇒ Object
- #BehaviorTitle ⇒ Object
- #BehaviorUrl ⇒ Object
- #HighRiskCount ⇒ Object
- #Platform ⇒ Object
- #PrivacyTextMD5 ⇒ Object
- #PrivacyTextName ⇒ Object
- #ReportTitle ⇒ Object
- #ReportUrl ⇒ Object
- #SoftwareMD5 ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(apppackage = nil, appname = nil, appversion = nil, platform = nil, reporturl = nil, reporttitle = nil, behaviorurl = nil, behaviortitle = nil, highriskcount = nil, privacytextname = nil, softwaremd5 = nil, privacytextmd5 = nil) ⇒ AppInfoItem
constructor
A new instance of AppInfoItem.
Constructor Details
#initialize(apppackage = nil, appname = nil, appversion = nil, platform = nil, reporturl = nil, reporttitle = nil, behaviorurl = nil, behaviortitle = nil, highriskcount = nil, privacytextname = nil, softwaremd5 = nil, privacytextmd5 = nil) ⇒ AppInfoItem
Returns a new instance of AppInfoItem.
49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/v20220105/models.rb', line 49 def initialize(apppackage=nil, appname=nil, appversion=nil, platform=nil, reporturl=nil, reporttitle=nil, behaviorurl=nil, behaviortitle=nil, highriskcount=nil, privacytextname=nil, softwaremd5=nil, privacytextmd5=nil) @AppPackage = apppackage @AppName = appname @AppVersion = appversion @Platform = platform @ReportUrl = reporturl @ReportTitle = reporttitle @BehaviorUrl = behaviorurl @BehaviorTitle = behaviortitle @HighRiskCount = highriskcount @PrivacyTextName = privacytextname @SoftwareMD5 = softwaremd5 @PrivacyTextMD5 = privacytextmd5 end |
Instance Attribute Details
#AppName ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def AppName @AppName end |
#AppPackage ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def AppPackage @AppPackage end |
#AppVersion ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def AppVersion @AppVersion end |
#BehaviorTitle ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def BehaviorTitle @BehaviorTitle end |
#BehaviorUrl ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def BehaviorUrl @BehaviorUrl end |
#HighRiskCount ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def HighRiskCount @HighRiskCount end |
#Platform ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def Platform @Platform end |
#PrivacyTextMD5 ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def PrivacyTextMD5 @PrivacyTextMD5 end |
#PrivacyTextName ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def PrivacyTextName @PrivacyTextName end |
#ReportTitle ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def ReportTitle @ReportTitle end |
#ReportUrl ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def ReportUrl @ReportUrl end |
#SoftwareMD5 ⇒ Object
47 48 49 |
# File 'lib/v20220105/models.rb', line 47 def SoftwareMD5 @SoftwareMD5 end |
Instance Method Details
#deserialize(params) ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/v20220105/models.rb', line 64 def deserialize(params) @AppPackage = params['AppPackage'] @AppName = params['AppName'] @AppVersion = params['AppVersion'] @Platform = params['Platform'] @ReportUrl = params['ReportUrl'] @ReportTitle = params['ReportTitle'] @BehaviorUrl = params['BehaviorUrl'] @BehaviorTitle = params['BehaviorTitle'] @HighRiskCount = params['HighRiskCount'] @PrivacyTextName = params['PrivacyTextName'] @SoftwareMD5 = params['SoftwareMD5'] @PrivacyTextMD5 = params['PrivacyTextMD5'] end |