=begin #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.3.1 =end require 'date' module Hubspot module Cms module Hubdb class ColumnInput # Specifies whether the column is archived attr_accessor :archived # Name of the column attr_accessor :name # Options to choose for select and multi-select columns attr_accessor :options # Column width for HubDb UI attr_accessor :width # Label of the column attr_accessor :label # Column Id attr_accessor :id # Type of the column attr_accessor :type # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'archived' => :'archived', :'name' => :'name', :'options' => :'options', :'width' => :'width', :'label' => :'label', :'id' => :'id', :'type' => :'type' } end # Attribute type mapping. def self.openapi_types { :'archived' => :'Boolean', :'name' => :'String', :'options' => :'Array