summaryrefslogblamecommitdiffstats
path: root/vendor/paypal/paypalhttp/lib/PayPalHttp/HttpResponse.php
blob: ef8fb351dde1f8e56b9211b2cb4134963ba18cf8 (plain) (tree)

































                                                             
<?php

namespace PayPalHttp;

/**
 * Class HttpResponse
 * @package PayPalHttp
 *
 * Object that holds your response details
 */
class HttpResponse
{
    /**
     * @var integer
     */
    public $statusCode;

    /**
     * @var array | string
     */
    public $result;

    /**
     * @var array
     */
    public $headers;

    public function __construct($statusCode, $body, $headers)
    {
        $this->statusCode = $statusCode;
        $this->headers = $headers;
        $this->result = $body;
    }
}