Class: TencentCloud::Cloudaudit::V20190319::LookUpEventsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cloudaudit::V20190319::LookUpEventsResponse
- Defined in:
- lib/v20190319/models.rb
Overview
LookUpEvents返回参数结构体
Instance Attribute Summary collapse
-
#Events ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ListOver ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#NextToken ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nexttoken = nil, events = nil, listover = nil, totalcount = nil, requestid = nil) ⇒ LookUpEventsResponse
constructor
A new instance of LookUpEventsResponse.
Constructor Details
#initialize(nexttoken = nil, events = nil, listover = nil, totalcount = nil, requestid = nil) ⇒ LookUpEventsResponse
Returns a new instance of LookUpEventsResponse.
1017 1018 1019 1020 1021 1022 1023 |
# File 'lib/v20190319/models.rb', line 1017 def initialize(nexttoken=nil, events=nil, listover=nil, totalcount=nil, requestid=nil) @NextToken = nexttoken @Events = events @ListOver = listover @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Events ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
1015 1016 1017 |
# File 'lib/v20190319/models.rb', line 1015 def Events @Events end |
#ListOver ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
1015 1016 1017 |
# File 'lib/v20190319/models.rb', line 1015 def ListOver @ListOver end |
#NextToken ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
1015 1016 1017 |
# File 'lib/v20190319/models.rb', line 1015 def NextToken @NextToken end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
1015 1016 1017 |
# File 'lib/v20190319/models.rb', line 1015 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
1015 1016 1017 |
# File 'lib/v20190319/models.rb', line 1015 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 |
# File 'lib/v20190319/models.rb', line 1025 def deserialize(params) @NextToken = params['NextToken'] unless params['Events'].nil? @Events = [] params['Events'].each do |i| event_tmp = Event.new event_tmp.deserialize(i) @Events << event_tmp end end @ListOver = params['ListOver'] @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |