1 <?php
2
3 namespace PayPal\Api;
4
5 use PayPal\Common\PayPalModel;
6
7 /**
8 * Class VerifyWebhookSignatureResponse
9 *
10 * The verify webhook signature response.
11 *
12 * @package PayPal\Api
13 *
14 * @property string verification_status
15 */
16 class VerifyWebhookSignatureResponse extends PayPalModel
17 {
18 /**
19 * The status of the signature verification. Value is `SUCCESS` or `FAILURE`.
20 * Valid Values: ["SUCCESS", "FAILURE"]
21 *
22 * @param string $verification_status
23 *
24 * @return $this
25 */
26 public function setVerificationStatus($verification_status)
27 {
28 $this->verification_status = $verification_status;
29 return $this;
30 }
31
32 /**
33 * The status of the signature verification. Value is `SUCCESS` or `FAILURE`.
34 *
35 * @return string
36 */
37 public function getVerificationStatus()
38 {
39 return $this->verification_status;
40 }
41
42 }
43