Overview

Namespaces

  • PipelinerSales
    • ApiClient
      • Http
      • Query
      • Repository
        • Rest

Classes

  • CreatedResponse
  • CurlHttpClient
  • Response

Interfaces

  • HttpInterface

Exceptions

  • PipelinerHttpException
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: /**
 3:  * This file is part of the Pipeliner API client library for PHP
 4:  *
 5:  * Copyright 2014 Pipelinersales, Inc. All Rights Reserved.
 6:  * For the full license information, see the attached LICENSE file.
 7:  */
 8: 
 9: namespace PipelinerSales\ApiClient\Http;
10: 
11: /**
12:  * Represents a HTTP 201 Created response
13:  */
14: abstract class CreatedResponse extends Response
15: {
16: 
17:     /**
18:      * Returns the ID of the newly created entity
19:      * @return string
20:      */
21:     abstract public function getCreatedId();
22: }
23: 
API documentation generated by ApiGen