This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/CreateProfileResponse.php
japatel 0cb302326a Enabled Payment Experience
- Updated Api to enabled Payment Experience
- Updated Tests and Samples
- Added Json Validator
- Ability for PPModel to return array of self objects
2014-10-13 12:00:31 -05:00

44 lines
656 B
PHP

<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
use PayPal\Rest\ApiContext;
/**
* Class CreateProfileResponse
*
* Response schema for create profile api
*
* @package PayPal\Api
*
* @property string id
*/
class CreateProfileResponse extends PPModel
{
/**
* ID of the payment web experience profile.
*
*
* @param string $id
*
* @return $this
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* ID of the payment web experience profile.
*
* @return string
*/
public function getId()
{
return $this->id;
}
}