-
Notifications
You must be signed in to change notification settings - Fork 84
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 #220 from HubSpot/feature/codegenRegeneration
regeneration (add hub db + regenerate scheme and timeline)
- Loading branch information
Showing
61 changed files
with
19,617 additions
and
69 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\Cms\Hubdb | ||
* @author OpenAPI Generator team | ||
* @link https://openapi-generator.tech | ||
*/ | ||
|
||
/** | ||
* HubDB endpoints | ||
* | ||
* HubDB is a relational data store that presents data as rows, columns, and cells in a table, much like a spreadsheet. HubDB tables can be added or modified [in the HubSpot CMS](https://knowledge.hubspot.com/cos-general/how-to-edit-hubdb-tables), but you can also use the API endpoints documented here. For more information on HubDB tables and using their data on a HubSpot site, see the [CMS developers site](https://designers.hubspot.com/docs/tools/hubdb). You can also see the [documentation for dynamic pages](https://designers.hubspot.com/docs/tutorials/how-to-build-dynamic-pages-with-hubdb) for more details about the `useForPages` field. HubDB tables now support `DRAFT` and `PUBLISHED` versions. This allows you to update data in the table, either for testing or to allow for a manual approval process, without affecting any live pages using the existing data. Draft data can be reviewed and published by a user working in HubSpot or published via the API. Draft data can also be discarded, allowing users to go back to the live version of the data without disrupting it. | ||
* | ||
* The version of the OpenAPI document: v3 | ||
* | ||
* Generated by: https://openapi-generator.tech | ||
* OpenAPI Generator version: 4.2.2 | ||
*/ | ||
|
||
/** | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
namespace HubSpot\Client\Cms\Hubdb; | ||
|
||
use \Exception; | ||
|
||
/** | ||
* ApiException Class Doc Comment | ||
* | ||
* @category Class | ||
* @package HubSpot\Client\Cms\Hubdb | ||
* @author OpenAPI Generator team | ||
* @link https://openapi-generator.tech | ||
*/ | ||
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.