accountType = $accountType; } /** * @return self::ACCOUNT_TYPE_* */ public function getAccountType() { return $this->accountType; } /** * Automatically created label IDs assigned to the MC account by CSS Center. * * @param string[] $automaticLabelIds */ public function setAutomaticLabelIds($automaticLabelIds) { $this->automaticLabelIds = $automaticLabelIds; } /** * @return string[] */ public function getAutomaticLabelIds() { return $this->automaticLabelIds; } /** * The CSS/MC account's short display name. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Output only. Immutable. The CSS/MC account's full name. * * @param string $fullName */ public function setFullName($fullName) { $this->fullName = $fullName; } /** * @return string */ public function getFullName() { return $this->fullName; } /** * Output only. Immutable. The CSS/MC account's homepage. * * @param string $homepageUri */ public function setHomepageUri($homepageUri) { $this->homepageUri = $homepageUri; } /** * @return string */ public function getHomepageUri() { return $this->homepageUri; } /** * Manually created label IDs assigned to the CSS/MC account by a CSS parent * account. * * @param string[] $labelIds */ public function setLabelIds($labelIds) { $this->labelIds = $labelIds; } /** * @return string[] */ public function getLabelIds() { return $this->labelIds; } /** * The label resource name. Format: accounts/{account} * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The CSS/MC account's parent resource. CSS group for CSS domains; CSS domain * for MC accounts. Returned only if the user has access to the parent * account. Note: For MC sub-accounts, this is also the CSS domain that is the * parent resource of the MCA account, since we are effectively flattening the * hierarchy." * * @param string $parent */ 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(Account::class, 'Google_Service_Css_Account');