Class: TencentCloud::Bi::V20220105::CreateProjectResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bi::V20220105::CreateProjectResponse
- Defined in:
- lib/v20220105/models.rb
Overview
CreateProject返回参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ErrorInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Extra ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Msg ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(errorinfo = nil, extra = nil, data = nil, msg = nil, requestid = nil) ⇒ CreateProjectResponse
constructor
A new instance of CreateProjectResponse.
Constructor Details
#initialize(errorinfo = nil, extra = nil, data = nil, msg = nil, requestid = nil) ⇒ CreateProjectResponse
Returns a new instance of CreateProjectResponse.
871 872 873 874 875 876 877 |
# File 'lib/v20220105/models.rb', line 871 def initialize(errorinfo=nil, extra=nil, data=nil, msg=nil, requestid=nil) @ErrorInfo = errorinfo @Extra = extra @Data = data @Msg = msg @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
869 870 871 |
# File 'lib/v20220105/models.rb', line 869 def Data @Data end |
#ErrorInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
869 870 871 |
# File 'lib/v20220105/models.rb', line 869 def ErrorInfo @ErrorInfo end |
#Extra ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
869 870 871 |
# File 'lib/v20220105/models.rb', line 869 def Extra @Extra end |
#Msg ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
869 870 871 |
# File 'lib/v20220105/models.rb', line 869 def Msg @Msg end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
869 870 871 |
# File 'lib/v20220105/models.rb', line 869 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
879 880 881 882 883 884 885 886 887 888 889 890 891 |
# File 'lib/v20220105/models.rb', line 879 def deserialize(params) unless params['ErrorInfo'].nil? @ErrorInfo = ErrorInfo.new @ErrorInfo.deserialize(params['ErrorInfo']) end @Extra = params['Extra'] unless params['Data'].nil? @Data = Data.new @Data.deserialize(params['Data']) end @Msg = params['Msg'] @RequestId = params['RequestId'] end |