details = $details; } /** * @return string */ public function getDetails() { return $this->details; } /** * An external identifier to be associated with the entry. The integration * code will show up together with the entry in many places in the system, for * example, reporting. Must be UTF-8 encoded with a length of no more than 500 * characters. * * @param string $integrationCode */ public function setIntegrationCode($integrationCode) { $this->integrationCode = $integrationCode; } /** * @return string */ public function getIntegrationCode() { return $this->integrationCode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IntegrationDetails::class, 'Google_Service_DisplayVideo_IntegrationDetails');