Class: TencentCloud::Ccc::V20200210::DescribeAutoCalloutTaskResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ccc::V20200210::DescribeAutoCalloutTaskResponse
- Defined in:
- lib/v20200210/models.rb
Overview
DescribeAutoCalloutTask返回参数结构体
Instance Attribute Summary collapse
-
#Callees ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Callers ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Description ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#IvrId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#NotAfter ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#NotBefore ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#State ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, description = nil, notbefore = nil, notafter = nil, callers = nil, callees = nil, ivrid = nil, state = nil, requestid = nil) ⇒ DescribeAutoCalloutTaskResponse
constructor
A new instance of DescribeAutoCalloutTaskResponse.
Constructor Details
#initialize(name = nil, description = nil, notbefore = nil, notafter = nil, callers = nil, callees = nil, ivrid = nil, state = nil, requestid = nil) ⇒ DescribeAutoCalloutTaskResponse
Returns a new instance of DescribeAutoCalloutTaskResponse.
2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 |
# File 'lib/v20200210/models.rb', line 2994 def initialize(name=nil, description=nil, notbefore=nil, notafter=nil, callers=nil, callees=nil, ivrid=nil, state=nil, requestid=nil) @Name = name @Description = description @NotBefore = notbefore @NotAfter = notafter @Callers = callers @Callees = callees @IvrId = ivrid @State = state @RequestId = requestid end |
Instance Attribute Details
#Callees ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def Callees @Callees end |
#Callers ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def Callers @Callers end |
#Description ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def Description @Description end |
#IvrId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def IvrId @IvrId end |
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def Name @Name end |
#NotAfter ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def NotAfter @NotAfter end |
#NotBefore ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def NotBefore @NotBefore end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def RequestId @RequestId end |
#State ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2992 2993 2994 |
# File 'lib/v20200210/models.rb', line 2992 def State @State end |
Instance Method Details
#deserialize(params) ⇒ Object
3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 |
# File 'lib/v20200210/models.rb', line 3006 def deserialize(params) @Name = params['Name'] @Description = params['Description'] @NotBefore = params['NotBefore'] @NotAfter = params['NotAfter'] @Callers = params['Callers'] unless params['Callees'].nil? @Callees = [] params['Callees'].each do |i| autocallouttaskcalleeinfo_tmp = AutoCalloutTaskCalleeInfo.new autocallouttaskcalleeinfo_tmp.deserialize(i) @Callees << autocallouttaskcalleeinfo_tmp end end @IvrId = params['IvrId'] @State = params['State'] @RequestId = params['RequestId'] end |