Class: TencentCloud::Apigateway::V20180808::ApiAppInfos
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::ApiAppInfos
- Defined in:
- lib/v20180808/models.rb
Overview
应用信息集
Instance Attribute Summary collapse
-
#ApiAppSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, apiappset = nil) ⇒ ApiAppInfos
constructor
A new instance of ApiAppInfos.
Constructor Details
#initialize(totalcount = nil, apiappset = nil) ⇒ ApiAppInfos
Returns a new instance of ApiAppInfos.
300 301 302 303 |
# File 'lib/v20180808/models.rb', line 300 def initialize(totalcount=nil, apiappset=nil) @TotalCount = totalcount @ApiAppSet = apiappset end |
Instance Attribute Details
#ApiAppSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
298 299 300 |
# File 'lib/v20180808/models.rb', line 298 def ApiAppSet @ApiAppSet end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
298 299 300 |
# File 'lib/v20180808/models.rb', line 298 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
305 306 307 308 309 310 311 312 313 314 315 |
# File 'lib/v20180808/models.rb', line 305 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ApiAppSet'].nil? @ApiAppSet = [] params['ApiAppSet'].each do |i| apiappinfo_tmp = ApiAppInfo.new apiappinfo_tmp.deserialize(i) @ApiAppSet << apiappinfo_tmp end end end |