1 <?php
2
3 namespace PayPal\Api;
4
5 /**
6 * Class CreateProfileResponse
7 *
8 * Response schema for create profile api
9 *
10 * @package PayPal\Api
11 *
12 * @property string id
13 */
14 class CreateProfileResponse extends WebProfile
15 {
16 /**
17 * ID of the payment web experience profile.
18 *
19 *
20 * @param string $id
21 *
22 * @return $this
23 */
24 public function setId($id)
25 {
26 $this->id = $id;
27 return $this;
28 }
29
30 /**
31 * ID of the payment web experience profile.
32 *
33 * @return string
34 */
35 public function getId()
36 {
37 return $this->id;
38 }
39
40 }
41