/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CollectionEntityIdentifier } from '../models/CollectionEntityIdentifier'; import { CollectionMetadataItem } from '../models/CollectionMetadataItem'; import { HttpFile } from '../http/http'; /** * Response object for a collection. */ export class Collection { /** * Unique identifier of the collection. */ 'id': string; /** * Name of the collection. */ 'name': string; /** * Description of the collection. */ 'description'?: string | null; /** * Metadata objects in the collection. */ 'metadata'?: Array | null; /** * Creation timestamp in milliseconds. */ 'created_at'?: string | null; /** * Last updated timestamp in milliseconds. */ 'updated_at'?: string | null; /** * Name of the author who created the collection. */ 'author_name'?: string | null; /** * Unique identifier of the author. */ 'author_id'?: string | null; 'org'?: CollectionEntityIdentifier; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "description", "baseName": "description", "type": "string", "format": "" }, { "name": "metadata", "baseName": "metadata", "type": "Array", "format": "" }, { "name": "created_at", "baseName": "created_at", "type": "string", "format": "" }, { "name": "updated_at", "baseName": "updated_at", "type": "string", "format": "" }, { "name": "author_name", "baseName": "author_name", "type": "string", "format": "" }, { "name": "author_id", "baseName": "author_id", "type": "string", "format": "" }, { "name": "org", "baseName": "org", "type": "CollectionEntityIdentifier", "format": "" } ]; static getAttributeTypeMap() { return Collection.attributeTypeMap; } public constructor() { } }