Class: TencentCloud::Cme::V20191029::DeleteClassRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::DeleteClassRequest
- Defined in:
- lib/v20191029/models.rb
Overview
DeleteClass请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(platform = nil, owner = nil, classpath = nil, operator = nil) ⇒ DeleteClassRequest
constructor
A new instance of DeleteClassRequest.
Constructor Details
#initialize(platform = nil, owner = nil, classpath = nil, operator = nil) ⇒ DeleteClassRequest
Returns a new instance of DeleteClassRequest.
918 919 920 921 922 923 |
# File 'lib/v20191029/models.rb', line 918 def initialize(platform=nil, owner=nil, classpath=nil, operator=nil) @Platform = platform @Owner = owner @ClassPath = classpath @Operator = operator end |
Instance Attribute Details
#ClassPath ⇒ Object
916 917 918 |
# File 'lib/v20191029/models.rb', line 916 def ClassPath @ClassPath end |
#Operator ⇒ Object
916 917 918 |
# File 'lib/v20191029/models.rb', line 916 def Operator @Operator end |
#Owner ⇒ Object
916 917 918 |
# File 'lib/v20191029/models.rb', line 916 def Owner @Owner end |
#Platform ⇒ Object
916 917 918 |
# File 'lib/v20191029/models.rb', line 916 def Platform @Platform end |
Instance Method Details
#deserialize(params) ⇒ Object
925 926 927 928 929 930 931 932 933 |
# File 'lib/v20191029/models.rb', line 925 def deserialize(params) @Platform = params['Platform'] unless params['Owner'].nil? @Owner = Entity.new @Owner.deserialize(params['Owner']) end @ClassPath = params['ClassPath'] @Operator = params['Operator'] end |