site_id; } /** * Sets the site ID. * * @since 1.98.0 * * @param string $id The site id. */ public function setSiteId( $id ) { $this->site_id = $id; } /** * Gets the site secret. * * @since 1.98.0 */ public function getSiteSecret() { return $this->site_secret; } /** * Sets the site secret. * * @since 1.98.0 * * @param string $secret The site secret. */ public function setSiteSecret( $secret ) { $this->site_secret = $secret; } }