forked from HubSpot/hubspot-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request HubSpot#10 from HubSpot/sdk-owners-api
Add Owners auto-generated client
- Loading branch information
Showing
16 changed files
with
4,573 additions
and
8 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<?php | ||
/** | ||
* ApiException | ||
* PHP version 5 | ||
* | ||
* @category Class | ||
* @package HubSpot\Client\Crm\Owners | ||
* @author Swagger Codegen team | ||
* @link https://github.com/swagger-api/swagger-codegen | ||
*/ | ||
|
||
/** | ||
* CRM Owners | ||
* | ||
* HubSpot uses **owners** to assign CRM objects to specific people in your organization. The endpoints described here are used to get a list of the owners that are available for an account. To assign an owner to an object, set the hubspot_owner_id property using the appropriate CRM object update or create a request. If teams are available for your HubSpot tier, these endpoints will also indicate which team an owner belongs to. Team membership can be one of PRIMARY (default), SECONDARY, or CHILD. | ||
* | ||
* OpenAPI spec version: v3 | ||
* | ||
* Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
* Swagger Codegen version: 2.4.8 | ||
*/ | ||
|
||
/** | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
namespace HubSpot\Client\Crm\Owners; | ||
|
||
use \Exception; | ||
|
||
/** | ||
* ApiException Class Doc Comment | ||
* | ||
* @category Class | ||
* @package HubSpot\Client\Crm\Owners | ||
* @author Swagger Codegen team | ||
* @link https://github.com/swagger-api/swagger-codegen | ||
*/ | ||
class ApiException extends Exception | ||
{ | ||
|
||
/** | ||
* The HTTP body of the server response either as Json or string. | ||
* | ||
* @var mixed | ||
*/ | ||
protected $responseBody; | ||
|
||
/** | ||
* The HTTP header of the server response. | ||
* | ||
* @var string[]|null | ||
*/ | ||
protected $responseHeaders; | ||
|
||
/** | ||
* The deserialized response object | ||
* | ||
* @var $responseObject; | ||
*/ | ||
protected $responseObject; | ||
|
||
/** | ||
* Constructor | ||
* | ||
* @param string $message Error message | ||
* @param int $code HTTP status code | ||
* @param string[]|null $responseHeaders HTTP response header | ||
* @param mixed $responseBody HTTP decoded body of the server response either as \stdClass or string | ||
*/ | ||
public function __construct($message = "", $code = 0, $responseHeaders = [], $responseBody = null) | ||
{ | ||
parent::__construct($message, $code); | ||
$this->responseHeaders = $responseHeaders; | ||
$this->responseBody = $responseBody; | ||
} | ||
|
||
/** | ||
* Gets the HTTP response header | ||
* | ||
* @return string[]|null HTTP response header | ||
*/ | ||
public function getResponseHeaders() | ||
{ | ||
return $this->responseHeaders; | ||
} | ||
|
||
/** | ||
* Gets the HTTP body of the server response either as Json or string | ||
* | ||
* @return mixed HTTP body of the server response either as \stdClass or string | ||
*/ | ||
public function getResponseBody() | ||
{ | ||
return $this->responseBody; | ||
} | ||
|
||
/** | ||
* Sets the deseralized response object (during deserialization) | ||
* | ||
* @param mixed $obj Deserialized response object | ||
* | ||
* @return void | ||
*/ | ||
public function setResponseObject($obj) | ||
{ | ||
$this->responseObject = $obj; | ||
} | ||
|
||
/** | ||
* Gets the deseralized response object (during deserialization) | ||
* | ||
* @return mixed the deserialized response object | ||
*/ | ||
public function getResponseObject() | ||
{ | ||
return $this->responseObject; | ||
} | ||
} |
Oops, something went wrong.