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.
9798 9799 9800 9801 9802 9803 |
# File 'lib/v20180125/models.rb', line 9798 def initialize(domain=nil, areas=nil, jobtype=nil, jobdatetime=nil) @Domain = domain @Areas = areas @JobType = jobtype @JobDateTime = jobdatetime end |
Instance Attribute Details
#Areas ⇒ Object
9796 9797 9798 |
# File 'lib/v20180125/models.rb', line 9796 def Areas @Areas end |
#Domain ⇒ Object
9796 9797 9798 |
# File 'lib/v20180125/models.rb', line 9796 def Domain @Domain end |
#JobDateTime ⇒ Object
9796 9797 9798 |
# File 'lib/v20180125/models.rb', line 9796 def JobDateTime @JobDateTime end |
#JobType ⇒ Object
9796 9797 9798 |
# File 'lib/v20180125/models.rb', line 9796 def JobType @JobType end |
Instance Method Details
#deserialize(params) ⇒ Object
9805 9806 9807 9808 9809 9810 9811 9812 9813 |
# File 'lib/v20180125/models.rb', line 9805 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 |