/** * 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 { HttpFile } from '../http/http'; export class WebhookPagination { /** * The starting record number from where the records are included. */ 'record_offset': number; /** * The number of records included in the response. */ 'record_size': number; /** * Total number of webhook configurations available. */ 'total_count': number; /** * Indicates whether more records are available beyond the current response. */ 'has_more': boolean; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "record_offset", "baseName": "record_offset", "type": "number", "format": "int32" }, { "name": "record_size", "baseName": "record_size", "type": "number", "format": "int32" }, { "name": "total_count", "baseName": "total_count", "type": "number", "format": "int32" }, { "name": "has_more", "baseName": "has_more", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return WebhookPagination.attributeTypeMap; } public constructor() { } }