accountId = $accountId; } /** * @return string */ public function getAccountId() { return $this->accountId; } /** * The account name this profile belongs to. * * @param string $accountName */ public function setAccountName($accountName) { $this->accountName = $accountName; } /** * @return string */ public function getAccountName() { return $this->accountName; } /** * Etag of this resource. * * @param string $etag */ public function setEtag($etag) { $this->etag = $etag; } /** * @return string */ public function getEtag() { return $this->etag; } /** * Identifies what kind of resource this is. Value: the fixed string * "dfareporting#userProfile". * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * The unique ID of the user profile. * * @param string $profileId */ public function setProfileId($profileId) { $this->profileId = $profileId; } /** * @return string */ public function getProfileId() { return $this->profileId; } /** * The sub account ID this profile belongs to if applicable. * * @param string $subAccountId */ public function setSubAccountId($subAccountId) { $this->subAccountId = $subAccountId; } /** * @return string */ public function getSubAccountId() { return $this->subAccountId; } /** * The sub account name this profile belongs to if applicable. * * @param string $subAccountName */ public function setSubAccountName($subAccountName) { $this->subAccountName = $subAccountName; } /** * @return string */ public function getSubAccountName() { return $this->subAccountName; } /** * The user name. * * @param string $userName */ public function setUserName($userName) { $this->userName = $userName; } /** * @return string */ public function getUserName() { return $this->userName; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UserProfile::class, 'Google_Service_Dfareporting_UserProfile');