Class: TencentCloud::Npp::V20190823::DescribeCallBackCdrResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Npp::V20190823::DescribeCallBackCdrResponse
- Defined in:
- lib/v20190823/models.rb
Overview
DescribeCallBackCdr返回参数结构体
Instance Attribute Summary collapse
-
#Cdr ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ErrorCode ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Msg ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(cdr = nil, offset = nil, errorcode = nil, msg = nil, requestid = nil) ⇒ DescribeCallBackCdrResponse
constructor
A new instance of DescribeCallBackCdrResponse.
Constructor Details
#initialize(cdr = nil, offset = nil, errorcode = nil, msg = nil, requestid = nil) ⇒ DescribeCallBackCdrResponse
Returns a new instance of DescribeCallBackCdrResponse.
399 400 401 402 403 404 405 |
# File 'lib/v20190823/models.rb', line 399 def initialize(cdr=nil, offset=nil, errorcode=nil, msg=nil, requestid=nil) @Cdr = cdr @Offset = offset @ErrorCode = errorcode @Msg = msg @RequestId = requestid end |
Instance Attribute Details
#Cdr ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
397 398 399 |
# File 'lib/v20190823/models.rb', line 397 def Cdr @Cdr end |
#ErrorCode ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
397 398 399 |
# File 'lib/v20190823/models.rb', line 397 def ErrorCode @ErrorCode end |
#Msg ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
397 398 399 |
# File 'lib/v20190823/models.rb', line 397 def Msg @Msg end |
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
397 398 399 |
# File 'lib/v20190823/models.rb', line 397 def Offset @Offset end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
397 398 399 |
# File 'lib/v20190823/models.rb', line 397 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
# File 'lib/v20190823/models.rb', line 407 def deserialize(params) unless params['Cdr'].nil? @Cdr = [] params['Cdr'].each do |i| callbackcdr_tmp = CallBackCdr.new callbackcdr_tmp.deserialize(i) @Cdr << callbackcdr_tmp end end @Offset = params['Offset'] @ErrorCode = params['ErrorCode'] @Msg = params['Msg'] @RequestId = params['RequestId'] end |