/** * Enum for RTIG Overall Sentiment Model */ export declare enum RtigOverallSentimentModel { /** * RTIG Customer Satisfaction model */ CSAT = "csat", /** * RTIG Sales model */ SALES = "sales" } /** * Enum for RTIG Overall Sentiment Metric */ export declare enum RtigOverallSentimentMetric { /** * RTIG Customer Sentiment metric */ SENTIMENT = "sentiment", /** * RTIG Sales Likelihood to Buy metric */ LIKELIHOOD_TO_BUY = "likelihoodtobuy" }