Class: TencentCloud::Cdn::V20180606::GetDisableRecordsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::GetDisableRecordsResponse
- Defined in:
- lib/v20180606/models.rb
Overview
GetDisableRecords返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#UrlRecordList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(urlrecordlist = nil, totalcount = nil, requestid = nil) ⇒ GetDisableRecordsResponse
constructor
A new instance of GetDisableRecordsResponse.
Constructor Details
#initialize(urlrecordlist = nil, totalcount = nil, requestid = nil) ⇒ GetDisableRecordsResponse
Returns a new instance of GetDisableRecordsResponse.
7730 7731 7732 7733 7734 |
# File 'lib/v20180606/models.rb', line 7730 def initialize(urlrecordlist=nil, totalcount=nil, requestid=nil) @UrlRecordList = urlrecordlist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7728 7729 7730 |
# File 'lib/v20180606/models.rb', line 7728 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7728 7729 7730 |
# File 'lib/v20180606/models.rb', line 7728 def TotalCount @TotalCount end |
#UrlRecordList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7728 7729 7730 |
# File 'lib/v20180606/models.rb', line 7728 def UrlRecordList @UrlRecordList end |
Instance Method Details
#deserialize(params) ⇒ Object
7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 |
# File 'lib/v20180606/models.rb', line 7736 def deserialize(params) unless params['UrlRecordList'].nil? @UrlRecordList = [] params['UrlRecordList'].each do |i| urlrecord_tmp = UrlRecord.new urlrecord_tmp.deserialize(i) @UrlRecordList << urlrecord_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |