from = $from; } /** * @return FromMapping */ public function getFrom() { return $this->from; } /** * Optional. Input variables whose values will be passed on to dependencies. * * @param ToMapping $to */ public function setTo(ToMapping $to) { $this->to = $to; } /** * @return ToMapping */ public function getTo() { return $this->to; } /** * Required. name of the variable * * @param string $variable */ public function setVariable($variable) { $this->variable = $variable; } /** * @return string */ public function getVariable() { return $this->variable; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VariableMapping::class, 'Google_Service_SaaSServiceManagement_VariableMapping');