/** * 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 { EventChannelConfigInput } from '../models/EventChannelConfigInput'; import { HttpFile } from '../http/http'; export class OrgChannelConfigInput { /** * Unique identifier or name of the org */ 'org_identifier': string; /** * Operation to perform. REPLACE: Update preferences (default). RESET: Remove org-specific configurations, causing fallback to cluster-level preferences. */ 'operation'?: OrgChannelConfigInputOperationEnum | null; /** * Event-specific configurations. Required for REPLACE operation. */ 'preferences'?: Array | null; /** * Event types to reset. Required for RESET operation. Org-specific configurations for these events will be removed, causing fallback to cluster-level preferences. */ 'reset_events'?: Array | null; 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": "operation", "baseName": "operation", "type": "OrgChannelConfigInputOperationEnum", "format": "" }, { "name": "preferences", "baseName": "preferences", "type": "Array", "format": "" }, { "name": "reset_events", "baseName": "reset_events", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return OrgChannelConfigInput.attributeTypeMap; } public constructor() { } } export type OrgChannelConfigInputOperationEnum = "REPLACE" | "RESET" ; export type OrgChannelConfigInputResetEventsEnum = "LIVEBOARD_SCHEDULE" ;