parent = $parent; } /** * @return string */ public function getParent() { return $this->parent; } /** * Required. A printer to create. If you want to place the printer under * particular OU then populate printer.org_unit_id filed. Otherwise the * printer will be placed under root OU. * * @param Printer $printer */ public function setPrinter(Printer $printer) { $this->printer = $printer; } /** * @return Printer */ public function getPrinter() { return $this->printer; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CreatePrinterRequest::class, 'Google_Service_Directory_CreatePrinterRequest');