• File: CreateProfileResponse.php
  • Full Path: /home/masbinta/public_html/core/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreateProfileResponse.php
  • File size: 603 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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;
    }

}