mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
41 lines
603 B
PHP
41 lines
603 B
PHP
<?php
|
|
|
|
namespace PayPal\Api;
|
|
|
|
/**
|
|
* Class CreateProfileResponse
|
|
*
|
|
* Response schema for create profile api
|
|
*
|
|
* @package PayPal\Api
|
|
*
|
|
* @property string id
|
|
*/
|
|
class CreateProfileResponse extends WebProfile
|
|
{
|
|
/**
|
|
* 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;
|
|
}
|
|
|
|
}
|