Class: TencentCloud::Apigateway::V20180808::ApiAppApiInfos
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Apigateway::V20180808::ApiAppApiInfos
- Defined in:
- lib/v20180808/models.rb
Overview
应用信息集
Instance Attribute Summary collapse
-
#ApiAppApiSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, apiappapiset = nil) ⇒ ApiAppApiInfos
constructor
A new instance of ApiAppApiInfos.
Constructor Details
#initialize(totalcount = nil, apiappapiset = nil) ⇒ ApiAppApiInfos
Returns a new instance of ApiAppApiInfos.
224 225 226 227 |
# File 'lib/v20180808/models.rb', line 224 def initialize(totalcount=nil, apiappapiset=nil) @TotalCount = totalcount @ApiAppApiSet = apiappapiset end |
Instance Attribute Details
#ApiAppApiSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
222 223 224 |
# File 'lib/v20180808/models.rb', line 222 def ApiAppApiSet @ApiAppApiSet end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
222 223 224 |
# File 'lib/v20180808/models.rb', line 222 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/v20180808/models.rb', line 229 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ApiAppApiSet'].nil? @ApiAppApiSet = [] params['ApiAppApiSet'].each do |i| apiappapiinfo_tmp = ApiAppApiInfo.new apiappapiinfo_tmp.deserialize(i) @ApiAppApiSet << apiappapiinfo_tmp end end end |