displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setMasterBillingAccount($masterBillingAccount) { $this->masterBillingAccount = $masterBillingAccount; } /** * @return string */ public function getMasterBillingAccount() { return $this->masterBillingAccount; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setOpen($open) { $this->open = $open; } /** * @return bool */ public function getOpen() { return $this->open; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BillingAccount::class, 'Google_Service_Cloudbilling_BillingAccount');