"ContactId", "deviceId" => "DeviceId", ]; /** * @var string */ public $contactId; protected $deviceIdType = FocusBackendDeviceId::class; protected $deviceIdDataType = ''; /** * @param string */ public function setContactId($contactId) { $this->contactId = $contactId; } /** * @return string */ public function getContactId() { return $this->contactId; } /** * @param FocusBackendDeviceId */ public function setDeviceId(FocusBackendDeviceId $deviceId) { $this->deviceId = $deviceId; } /** * @return FocusBackendDeviceId */ public function getDeviceId() { return $this->deviceId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FocusBackendDeviceContactId::class, 'Google_Service_Contentwarehouse_FocusBackendDeviceContactId');