Class: TencentCloud::Iss::V20230517::OperTimeSlot

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20230517/models.rb

Overview

AI分析的时间段配置

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(start = nil, _end = nil) ⇒ OperTimeSlot

Returns a new instance of OperTimeSlot.



6107
6108
6109
6110
# File 'lib/v20230517/models.rb', line 6107

def initialize(start=nil, _end=nil)
  @Start = start
  @End = _end
end

Instance Attribute Details

#EndObject

Parameters:

  • Start:

    开始时间。格式为"hh:mm:ss",且 Start 必须小于 End

  • End:

    结束时间。格式为"hh:mm:ss",且 Start 必须小于 End



6105
6106
6107
# File 'lib/v20230517/models.rb', line 6105

def End
  @End
end

#StartObject

Parameters:

  • Start:

    开始时间。格式为"hh:mm:ss",且 Start 必须小于 End

  • End:

    结束时间。格式为"hh:mm:ss",且 Start 必须小于 End



6105
6106
6107
# File 'lib/v20230517/models.rb', line 6105

def Start
  @Start
end

Instance Method Details

#deserialize(params) ⇒ Object



6112
6113
6114
6115
# File 'lib/v20230517/models.rb', line 6112

def deserialize(params)
  @Start = params['Start']
  @End = params['End']
end