Class: TencentCloud::Ms::V20180408::IOSInfo

Inherits:
Common::AbstractModel
  • Object
show all
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

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

#BuildTypeObject



2032
2033
2034
# File 'lib/v20180408/models.rb', line 2032

def BuildType
  @BuildType
end

#InfoPListMd5Object



2032
2033
2034
# File 'lib/v20180408/models.rb', line 2032

def InfoPListMd5
  @InfoPListMd5
end

#InfoPListSizeObject



2032
2033
2034
# File 'lib/v20180408/models.rb', line 2032

def InfoPListSize
  @InfoPListSize
end

#InfoPListUrlObject



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