Class: TencentCloud::Waf::V20180125::ModifyAreaBanAreasRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::ModifyAreaBanAreasRequest
- Defined in:
- lib/v20180125/models.rb
Overview
ModifyAreaBanAreas请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(domain = nil, areas = nil, jobtype = nil, jobdatetime = nil) ⇒ ModifyAreaBanAreasRequest
constructor
A new instance of ModifyAreaBanAreasRequest.
Constructor Details
#initialize(domain = nil, areas = nil, jobtype = nil, jobdatetime = nil) ⇒ ModifyAreaBanAreasRequest
Returns a new instance of ModifyAreaBanAreasRequest.
14227 14228 14229 14230 14231 14232 |
# File 'lib/v20180125/models.rb', line 14227 def initialize(domain=nil, areas=nil, jobtype=nil, jobdatetime=nil) @Domain = domain @Areas = areas @JobType = jobtype @JobDateTime = jobdatetime end |
Instance Attribute Details
#Areas ⇒ Object
14225 14226 14227 |
# File 'lib/v20180125/models.rb', line 14225 def Areas @Areas end |
#Domain ⇒ Object
14225 14226 14227 |
# File 'lib/v20180125/models.rb', line 14225 def Domain @Domain end |
#JobDateTime ⇒ Object
14225 14226 14227 |
# File 'lib/v20180125/models.rb', line 14225 def JobDateTime @JobDateTime end |
#JobType ⇒ Object
14225 14226 14227 |
# File 'lib/v20180125/models.rb', line 14225 def JobType @JobType end |
Instance Method Details
#deserialize(params) ⇒ Object
14234 14235 14236 14237 14238 14239 14240 14241 14242 |
# File 'lib/v20180125/models.rb', line 14234 def deserialize(params) @Domain = params['Domain'] @Areas = params['Areas'] @JobType = params['JobType'] unless params['JobDateTime'].nil? @JobDateTime = JobDateTime.new @JobDateTime.deserialize(params['JobDateTime']) end end |