Class: TencentCloud::Ms::V20180408::IOSInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ms::V20180408::IOSInfo
- Defined in:
- lib/v20180408/models.rb
Overview
InfoPListUrl string ‘json:“InfoPListUrl”` //info.plist的url,必须保证不用权限校验就可以下载 InfoPListSize int64 `json:“InfoPListSize”` //info.plist文件的大小 InfoPListMd5 string `json:“InfoPListMd5”` //info.plist文件的md5 BuildType string `json:“BuildType”` //release: 需要INFO-PLIST文件,会生成工具部署安装包,并带有license文件,绑定机器;nobind不需要INFO-PLIST文件,不绑定机器
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(infoplisturl = nil, infoplistsize = nil, infoplistmd5 = nil, buildtype = nil) ⇒ IOSInfo
constructor
A new instance of IOSInfo.
Constructor Details
#initialize(infoplisturl = nil, infoplistsize = nil, infoplistmd5 = nil, buildtype = nil) ⇒ IOSInfo
2034 2035 2036 2037 2038 2039 |
# File 'lib/v20180408/models.rb', line 2034 def initialize(infoplisturl=nil, infoplistsize=nil, infoplistmd5=nil, buildtype=nil) @InfoPListUrl = infoplisturl @InfoPListSize = infoplistsize @InfoPListMd5 = infoplistmd5 @BuildType = buildtype end |
Instance Attribute Details
#BuildType ⇒ Object
2032 2033 2034 |
# File 'lib/v20180408/models.rb', line 2032 def BuildType @BuildType end |
#InfoPListMd5 ⇒ Object
2032 2033 2034 |
# File 'lib/v20180408/models.rb', line 2032 def InfoPListMd5 @InfoPListMd5 end |
#InfoPListSize ⇒ Object
2032 2033 2034 |
# File 'lib/v20180408/models.rb', line 2032 def InfoPListSize @InfoPListSize end |
#InfoPListUrl ⇒ Object
2032 2033 2034 |
# File 'lib/v20180408/models.rb', line 2032 def InfoPListUrl @InfoPListUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
2041 2042 2043 2044 2045 2046 |
# File 'lib/v20180408/models.rb', line 2041 def deserialize(params) @InfoPListUrl = params['InfoPListUrl'] @InfoPListSize = params['InfoPListSize'] @InfoPListMd5 = params['InfoPListMd5'] @BuildType = params['BuildType'] end |