tencentcloud-sdk-nodejs
Version:
47 lines (46 loc) • 4.15 kB
TypeScript
import { AbstractClient } from "../../../common/abstract_client";
import { ClientConfig } from "../../../common/interface";
import { DescribeBrandPosCommentsRequest, DescribeBrandSocialOpinionResponse, DescribeBrandExposureResponse, DescribeBrandPosCommentsResponse, DescribeIndustryNewsRequest, DescribeBrandSocialOpinionRequest, DescribeBrandSocialReportRequest, DescribeBrandSocialReportResponse, DescribeBrandExposureRequest, DescribeUserPortraitResponse, DescribeBrandCommentCountRequest, DescribeBrandMediaReportRequest, DescribeBrandMediaReportResponse, DescribeBrandCommentCountResponse, DescribeIndustryNewsResponse, DescribeBrandNegCommentsResponse, DescribeUserPortraitRequest, DescribeBrandNegCommentsRequest } from "./tbm_models";
/**
* tbm client
* @class
*/
export declare class Client extends AbstractClient {
constructor(clientConfig: ClientConfig);
/**
* 通过分析洞察参与过品牌媒体互动的用户,比如公开发表品牌的新闻评论、在公开社交渠道发表过对品牌的评价观点等用户,返回用户的画像属性分布,例如性别、年龄、地域、喜爱的明星、喜爱的影视。
*/
DescribeUserPortrait(req: DescribeUserPortraitRequest, cb?: (error: string, rep: DescribeUserPortraitResponse) => void): Promise<DescribeUserPortraitResponse>;
/**
* 通过分析用户在评价品牌时用词的正负面情绪评分,返回品牌热门好评观点列表。
*/
DescribeBrandPosComments(req: DescribeBrandPosCommentsRequest, cb?: (error: string, rep: DescribeBrandPosCommentsResponse) => void): Promise<DescribeBrandPosCommentsResponse>;
/**
* 根据客户定制的行业关键词,监测关键词出现在媒体网站(新闻媒体、网络门户、政府网站、微信公众号、天天快报等)发布资讯标题和正文中的报道数,以及文章列表、来源渠道、作者、发布时间等。
*/
DescribeIndustryNews(req: DescribeIndustryNewsRequest, cb?: (error: string, rep: DescribeIndustryNewsResponse) => void): Promise<DescribeIndustryNewsResponse>;
/**
* 监测品牌关键词出现在媒体网站(新闻媒体、网络门户、政府网站、微信公众号、天天快报等)发布资讯标题和正文中的报道数。按天输出结果。
*/
DescribeBrandMediaReport(req: DescribeBrandMediaReportRequest, cb?: (error: string, rep: DescribeBrandMediaReportResponse) => void): Promise<DescribeBrandMediaReportResponse>;
/**
* 通过分析用户在评价品牌时用词的正负面情绪评分,返回品牌热门差评观点列表。
*/
DescribeBrandNegComments(req: DescribeBrandNegCommentsRequest, cb?: (error: string, rep: DescribeBrandNegCommentsResponse) => void): Promise<DescribeBrandNegCommentsResponse>;
/**
* 监测品牌关键词出现在微博、QQ兴趣部落、论坛、博客等个人公开贡献资讯中的条数。按天输出数据结果。
*/
DescribeBrandSocialReport(req: DescribeBrandSocialReportRequest, cb?: (error: string, rep: DescribeBrandSocialReportResponse) => void): Promise<DescribeBrandSocialReportResponse>;
/**
* 检测品牌关键词出现在微博、QQ兴趣部落、论坛、博客等个人公开贡献资讯中的内容,每天聚合近30天热度最高的观点列表。
*/
DescribeBrandSocialOpinion(req: DescribeBrandSocialOpinionRequest, cb?: (error: string, rep: DescribeBrandSocialOpinionResponse) => void): Promise<DescribeBrandSocialOpinionResponse>;
/**
* 通过分析用户在评价品牌时用词的正负面情绪评分,返回品牌好评与差评评价条数,按天输出结果。
*/
DescribeBrandCommentCount(req: DescribeBrandCommentCountRequest, cb?: (error: string, rep: DescribeBrandCommentCountResponse) => void): Promise<DescribeBrandCommentCountResponse>;
/**
* 监测品牌关键词命中文章标题或全文的文章篇数,按天输出数据。
*/
DescribeBrandExposure(req: DescribeBrandExposureRequest, cb?: (error: string, rep: DescribeBrandExposureResponse) => void): Promise<DescribeBrandExposureResponse>;
}