public function withClockWidgets()

in src/Rtc/V20180111/RtcApiResolver.php [935:978]


	public function withClockWidgets(array $clockWidgets)
	{
	    $this->data['ClockWidgets'] = $clockWidgets;
		foreach ($clockWidgets as $depth1 => $depth1Value) {
			if(isset($depth1Value['FontType'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.FontType'] = $depth1Value['FontType'];
			}
			if(isset($depth1Value['FontColor'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.FontColor'] = $depth1Value['FontColor'];
			}
			if(isset($depth1Value['Y'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.Y'] = $depth1Value['Y'];
			}
			if(isset($depth1Value['ZOrder'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.ZOrder'] = $depth1Value['ZOrder'];
			}
			if(isset($depth1Value['X'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.X'] = $depth1Value['X'];
			}
			if(isset($depth1Value['FontSize'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.FontSize'] = $depth1Value['FontSize'];
			}
			if(isset($depth1Value['BorderWidth'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.BorderWidth'] = $depth1Value['BorderWidth'];
			}
			if(isset($depth1Value['BorderColor'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.BorderColor'] = $depth1Value['BorderColor'];
			}
			if(isset($depth1Value['Box'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.Box'] = $depth1Value['Box'];
			}
			if(isset($depth1Value['BoxColor'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.BoxColor'] = $depth1Value['BoxColor'];
			}
			if(isset($depth1Value['BoxBorderWidth'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.BoxBorderWidth'] = $depth1Value['BoxBorderWidth'];
			}
			if(isset($depth1Value['Alpha'])){
				$this->options['query']['ClockWidgets.' . ($depth1 + 1) . '.Alpha'] = $depth1Value['Alpha'];
			}
		}

		return $this;
    }