Class: TencentCloud::Gs::V20191118::CreateAndroidAppVersionRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gs::V20191118::CreateAndroidAppVersionRequest
- Defined in:
- lib/v20191118/models.rb
Overview
CreateAndroidAppVersion请求参数结构体
Instance Attribute Summary collapse
- #AndroidAppId ⇒ Object
- #CleanupMode ⇒ Object
- #Command ⇒ Object
- #DownloadUrl ⇒ Object
- #UninstallCommand ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(androidappid = nil, downloadurl = nil, command = nil, uninstallcommand = nil, cleanupmode = nil) ⇒ CreateAndroidAppVersionRequest
constructor
A new instance of CreateAndroidAppVersionRequest.
Constructor Details
#initialize(androidappid = nil, downloadurl = nil, command = nil, uninstallcommand = nil, cleanupmode = nil) ⇒ CreateAndroidAppVersionRequest
Returns a new instance of CreateAndroidAppVersionRequest.
864 865 866 867 868 869 870 |
# File 'lib/v20191118/models.rb', line 864 def initialize(androidappid=nil, downloadurl=nil, command=nil, uninstallcommand=nil, cleanupmode=nil) @AndroidAppId = androidappid @DownloadUrl = downloadurl @Command = command @UninstallCommand = uninstallcommand @CleanupMode = cleanupmode end |
Instance Attribute Details
#AndroidAppId ⇒ Object
862 863 864 |
# File 'lib/v20191118/models.rb', line 862 def AndroidAppId @AndroidAppId end |
#CleanupMode ⇒ Object
862 863 864 |
# File 'lib/v20191118/models.rb', line 862 def CleanupMode @CleanupMode end |
#Command ⇒ Object
862 863 864 |
# File 'lib/v20191118/models.rb', line 862 def Command @Command end |
#DownloadUrl ⇒ Object
862 863 864 |
# File 'lib/v20191118/models.rb', line 862 def DownloadUrl @DownloadUrl end |
#UninstallCommand ⇒ Object
862 863 864 |
# File 'lib/v20191118/models.rb', line 862 def UninstallCommand @UninstallCommand end |
Instance Method Details
#deserialize(params) ⇒ Object
872 873 874 875 876 877 878 |
# File 'lib/v20191118/models.rb', line 872 def deserialize(params) @AndroidAppId = params['AndroidAppId'] @DownloadUrl = params['DownloadUrl'] @Command = params['Command'] @UninstallCommand = params['UninstallCommand'] @CleanupMode = params['CleanupMode'] end |