/** * 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 { Collection } from '../models/Collection'; import { HttpFile } from '../http/http'; /** * Response object for search collections operation. */ export class CollectionSearchResponse { /** * List of collections matching the search criteria. */ 'collections': Array; /** * The starting record number from where the records are included. */ 'record_offset'?: number | null; /** * The number of records returned. */ 'record_size'?: number | null; /** * Indicates if this is the last batch of results. */ 'is_last_batch'?: boolean | null; /** * Total count of records returned. */ 'count'?: number | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "collections", "baseName": "collections", "type": "Array", "format": "" }, { "name": "record_offset", "baseName": "record_offset", "type": "number", "format": "int32" }, { "name": "record_size", "baseName": "record_size", "type": "number", "format": "int32" }, { "name": "is_last_batch", "baseName": "is_last_batch", "type": "boolean", "format": "" }, { "name": "count", "baseName": "count", "type": "number", "format": "int32" } ]; static getAttributeTypeMap() { return CollectionSearchResponse.attributeTypeMap; } public constructor() { } }