Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php
2
 
3
/**
4
 * HTTP Client library
5
 *
6
 * PHP version 5.4
7
 *
8
 * @author    Matt Bernier <dx@sendgrid.com>
9
 * @author    Elmer Thomas <dx@sendgrid.com>
10
 * @copyright 2016 SendGrid
11
 * @license   https://opensource.org/licenses/MIT The MIT License
12
 * @version   GIT: <git_id>
13
 * @link      http://packagist.org/packages/sendgrid/php-http-client
14
 */
15
 
16
namespace SendGrid;
17
 
18
/**
19
 * Holds the response from an API call.
20
 */
21
class Response
22
{
23
    /** @var int */
24
    protected $statusCode;
25
    /** @var string */
26
    protected $body;
27
    /** @var array */
28
    protected $headers;
29
 
30
    /**
31
     * Setup the response data
32
     *
33
     * @param int $statusCode the status code.
34
     * @param string $body    the response body.
35
     * @param array $headers  an array of response headers.
36
     */
37
    public function __construct($statusCode = null, $body = null, $headers = null)
38
    {
39
        $this->statusCode = $statusCode;
40
        $this->body = $body;
41
        $this->headers = $headers;
42
    }
43
 
44
    /**
45
     * The status code
46
     *
47
     * @return int
48
     */
49
    public function statusCode()
50
    {
51
        return $this->statusCode;
52
    }
53
 
54
    /**
55
     * The response body
56
     *
57
     * @return string
58
     */
59
    public function body()
60
    {
61
        return $this->body;
62
    }
63
 
64
    /**
65
     * The response headers
66
     *
67
     * @return array
68
     */
69
    public function headers()
70
    {
71
        return $this->headers;
72
    }
73
}