currencyCode = $currencyCode; } /** * @return string */ public function getCurrencyCode() { return $this->currencyCode; } /** * @param string */ public function setDisplayName($displayName) { $this->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; } /** * @param string */ public function setParent($parent) { $this->parent = $parent; } /** * @return string */ public function getParent() { return $this->parent; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BillingAccount::class, 'Google_Service_Cloudbilling_BillingAccount');