Class: TencentCloud::Gs::V20191118::DescribeAndroidAppsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gs::V20191118::DescribeAndroidAppsResponse
- Defined in:
- lib/v20191118/models.rb
Overview
DescribeAndroidApps返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(apps = nil, totalcount = nil, requestid = nil) ⇒ DescribeAndroidAppsResponse
constructor
A new instance of DescribeAndroidAppsResponse.
Constructor Details
#initialize(apps = nil, totalcount = nil, requestid = nil) ⇒ DescribeAndroidAppsResponse
Returns a new instance of DescribeAndroidAppsResponse.
1924 1925 1926 1927 1928 |
# File 'lib/v20191118/models.rb', line 1924 def initialize(apps=nil, totalcount=nil, requestid=nil) @Apps = apps @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Apps ⇒ Object
1922 1923 1924 |
# File 'lib/v20191118/models.rb', line 1922 def Apps @Apps end |
#RequestId ⇒ Object
1922 1923 1924 |
# File 'lib/v20191118/models.rb', line 1922 def RequestId @RequestId end |
#TotalCount ⇒ Object
1922 1923 1924 |
# File 'lib/v20191118/models.rb', line 1922 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 |
# File 'lib/v20191118/models.rb', line 1930 def deserialize(params) unless params['Apps'].nil? @Apps = [] params['Apps'].each do |i| androidapp_tmp = AndroidApp.new androidapp_tmp.deserialize(i) @Apps << androidapp_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |