Skip to content

Commit

Permalink
Merge pull request HubSpot#10 from HubSpot/sdk-owners-api
Browse files Browse the repository at this point in the history
Add Owners auto-generated client
  • Loading branch information
atanasiuk-hubspot authored and GitHub Enterprise committed Dec 17, 2019
2 parents a8b4aad + f5439fb commit 5286c18
Show file tree
Hide file tree
Showing 16 changed files with 4,573 additions and 8 deletions.
683 changes: 683 additions & 0 deletions codegen/Crm/Owners/Api/DefaultApi.php

Large diffs are not rendered by default.

121 changes: 121 additions & 0 deletions codegen/Crm/Owners/ApiException.php
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;
}
}
Loading

0 comments on commit 5286c18

Please sign in to comment.