/** * 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 { SearchWebhookConfigurationsRequestSortOptions } from '../models/SearchWebhookConfigurationsRequestSortOptions'; import { HttpFile } from '../http/http'; export class SearchWebhookConfigurationsRequest { /** * Unique ID or name of the org. */ 'org_identifier'?: string; /** * Unique ID or name of the webhook. */ 'webhook_identifier'?: string; /** * Type of webhook event to filter by. */ 'event_type'?: SearchWebhookConfigurationsRequestEventTypeEnum; /** * The offset point, starting from where the webhooks should be included in the response. */ 'record_offset'?: number; /** * The number of webhooks that should be included in the response starting from offset position. */ 'record_size'?: number; 'sort_options'?: SearchWebhookConfigurationsRequestSortOptions; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "org_identifier", "baseName": "org_identifier", "type": "string", "format": "" }, { "name": "webhook_identifier", "baseName": "webhook_identifier", "type": "string", "format": "" }, { "name": "event_type", "baseName": "event_type", "type": "SearchWebhookConfigurationsRequestEventTypeEnum", "format": "" }, { "name": "record_offset", "baseName": "record_offset", "type": "number", "format": "int32" }, { "name": "record_size", "baseName": "record_size", "type": "number", "format": "int32" }, { "name": "sort_options", "baseName": "sort_options", "type": "SearchWebhookConfigurationsRequestSortOptions", "format": "" } ]; static getAttributeTypeMap() { return SearchWebhookConfigurationsRequest.attributeTypeMap; } public constructor() { } } export type SearchWebhookConfigurationsRequestEventTypeEnum = "LIVEBOARD_SCHEDULE" ;