optInId = $optInId; $this->formId = $formId; $this->formType = $formType; $this->email = $email; $this->hash = $hash; $this->formData = $formData; } /** * {@inheritdoc} */ public static function getWordPressHookName(): string { return 'f12_cf7_doubleoptin_created'; } public function getOptInId(): int { return $this->optInId; } public function getFormId(): int { return $this->formId; } public function getFormType(): string { return $this->formType; } public function getEmail(): string { return $this->email; } public function getHash(): string { return $this->hash; } public function getFormData(): array { return $this->formData; } }