class TencentCloud::Emr::V20190103::RepeatStrategy

def deserialize(params)

def deserialize(params)
  @RepeatType = params['RepeatType']
  unless params['DayRepeat'].nil?
    @DayRepeat = DayRepeatStrategy.new
    @DayRepeat.deserialize(params['DayRepeat'])
  end
  unless params['WeekRepeat'].nil?
    @WeekRepeat = WeekRepeatStrategy.new
    @WeekRepeat.deserialize(params['WeekRepeat'])
  end
  unless params['MonthRepeat'].nil?
    @MonthRepeat = MonthRepeatStrategy.new
    @MonthRepeat.deserialize(params['MonthRepeat'])
  end
  unless params['NotRepeat'].nil?
    @NotRepeat = NotRepeatStrategy.new
    @NotRepeat.deserialize(params['NotRepeat'])
  end
  @Expire = params['Expire']
end