aes128 = $aes128; } /** * @return Aes128Encryption */ public function getAes128() { return $this->aes128; } /** * @param DrmSystems */ public function setDrmSystems(DrmSystems $drmSystems) { $this->drmSystems = $drmSystems; } /** * @return DrmSystems */ public function getDrmSystems() { return $this->drmSystems; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param MpegCommonEncryption */ public function setMpegCenc(MpegCommonEncryption $mpegCenc) { $this->mpegCenc = $mpegCenc; } /** * @return MpegCommonEncryption */ public function getMpegCenc() { return $this->mpegCenc; } /** * @param SampleAesEncryption */ public function setSampleAes(SampleAesEncryption $sampleAes) { $this->sampleAes = $sampleAes; } /** * @return SampleAesEncryption */ public function getSampleAes() { return $this->sampleAes; } /** * @param SecretManagerSource */ public function setSecretManagerKeySource(SecretManagerSource $secretManagerKeySource) { $this->secretManagerKeySource = $secretManagerKeySource; } /** * @return SecretManagerSource */ public function getSecretManagerKeySource() { return $this->secretManagerKeySource; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Encryption::class, 'Google_Service_Transcoder_Encryption');