Skip to content

Commit

Permalink
Merge pull request #220 from HubSpot/feature/codegenRegeneration
Browse files Browse the repository at this point in the history
regeneration (add hub db + regenerate scheme and timeline)
  • Loading branch information
ksvirkou-hubspot authored and GitHub Enterprise committed Nov 9, 2020
2 parents 24c3c45 + 7a06451 commit da76334
Show file tree
Hide file tree
Showing 61 changed files with 19,617 additions and 69 deletions.
8,765 changes: 8,765 additions & 0 deletions codegen/Cms/Hubdb/Api/DefaultApi.php

Large diffs are not rendered by default.

121 changes: 121 additions & 0 deletions codegen/Cms/Hubdb/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\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;
}
}
Loading

0 comments on commit da76334

Please sign in to comment.