首次推送

This commit is contained in:
lym
2026-03-09 00:13:46 +08:00
commit b19613bb31
13974 changed files with 2767735 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class AgePortrait : AbstractModel
{
/// <summary>
/// 年龄区间
/// </summary>
[JsonProperty("AgeRange")]
public string AgeRange{ get; set; }
/// <summary>
/// 百分比
/// </summary>
[JsonProperty("Percent")]
public float? Percent{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "AgeRange", this.AgeRange);
this.SetParamSimple(map, prefix + "Percent", this.Percent);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class AgePortraitInfo : AbstractModel
{
/// <summary>
/// 用户年龄画像数组
/// </summary>
[JsonProperty("PortraitSet")]
public AgePortrait[] PortraitSet{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "PortraitSet.", this.PortraitSet);
}
}
}

View File

@@ -0,0 +1,99 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class BrandReportArticle : AbstractModel
{
/// <summary>
/// 文章标题
/// </summary>
[JsonProperty("Title")]
public string Title{ get; set; }
/// <summary>
/// 文章url地址
/// </summary>
[JsonProperty("Url")]
public string Url{ get; set; }
/// <summary>
/// 文章来源
/// </summary>
[JsonProperty("FromSite")]
public string FromSite{ get; set; }
/// <summary>
/// 文章发表日期
/// </summary>
[JsonProperty("PubTime")]
public string PubTime{ get; set; }
/// <summary>
/// 文章标识
/// </summary>
[JsonProperty("Flag")]
public ulong? Flag{ get; set; }
/// <summary>
/// 文章热度值
/// </summary>
[JsonProperty("Hot")]
public ulong? Hot{ get; set; }
/// <summary>
/// 文章来源等级
/// </summary>
[JsonProperty("Level")]
public ulong? Level{ get; set; }
/// <summary>
/// 文章摘要
/// </summary>
[JsonProperty("Abstract")]
public string Abstract{ get; set; }
/// <summary>
/// 文章ID
/// </summary>
[JsonProperty("ArticleId")]
public string ArticleId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Title", this.Title);
this.SetParamSimple(map, prefix + "Url", this.Url);
this.SetParamSimple(map, prefix + "FromSite", this.FromSite);
this.SetParamSimple(map, prefix + "PubTime", this.PubTime);
this.SetParamSimple(map, prefix + "Flag", this.Flag);
this.SetParamSimple(map, prefix + "Hot", this.Hot);
this.SetParamSimple(map, prefix + "Level", this.Level);
this.SetParamSimple(map, prefix + "Abstract", this.Abstract);
this.SetParamSimple(map, prefix + "ArticleId", this.ArticleId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class Comment : AbstractModel
{
/// <summary>
/// 评论的日期
/// </summary>
[JsonProperty("Date")]
public string Date{ get; set; }
/// <summary>
/// 差评的个数
/// </summary>
[JsonProperty("NegCommentCount")]
public ulong? NegCommentCount{ get; set; }
/// <summary>
/// 好评的个数
/// </summary>
[JsonProperty("PosCommentCount")]
public ulong? PosCommentCount{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Date", this.Date);
this.SetParamSimple(map, prefix + "NegCommentCount", this.NegCommentCount);
this.SetParamSimple(map, prefix + "PosCommentCount", this.PosCommentCount);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CommentInfo : AbstractModel
{
/// <summary>
/// 用户评论内容
/// </summary>
[JsonProperty("Comment")]
public string Comment{ get; set; }
/// <summary>
/// 评论的时间
/// </summary>
[JsonProperty("Date")]
public string Date{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Comment", this.Comment);
this.SetParamSimple(map, prefix + "Date", this.Date);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DateCount : AbstractModel
{
/// <summary>
/// 统计日期
/// </summary>
[JsonProperty("Date")]
public string Date{ get; set; }
/// <summary>
/// 统计值
/// </summary>
[JsonProperty("Count")]
public ulong? Count{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Date", this.Date);
this.SetParamSimple(map, prefix + "Count", this.Count);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandCommentCountRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// 查询开始日期
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 查询结束日期
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandCommentCountResponse : AbstractModel
{
/// <summary>
/// 按天统计好评/差评数
/// </summary>
[JsonProperty("CommentSet")]
public Comment[] CommentSet{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "CommentSet.", this.CommentSet);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandExposureRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// 查询开始时间
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 查询结束时间
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandExposureResponse : AbstractModel
{
/// <summary>
/// 累计曝光量
/// </summary>
[JsonProperty("TotalCount")]
public ulong? TotalCount{ get; set; }
/// <summary>
/// 按天计算的统计数据
/// </summary>
[JsonProperty("DateCountSet")]
public DateCount[] DateCountSet{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "TotalCount", this.TotalCount);
this.SetParamArrayObj(map, prefix + "DateCountSet.", this.DateCountSet);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandMediaReportRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// 查询开始时间
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 查询结束时间
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandMediaReportResponse : AbstractModel
{
/// <summary>
/// 查询范围内文章总数
/// </summary>
[JsonProperty("TotalCount")]
public ulong? TotalCount{ get; set; }
/// <summary>
/// 按天计算的每天文章数
/// </summary>
[JsonProperty("DateCountSet")]
public DateCount[] DateCountSet{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "TotalCount", this.TotalCount);
this.SetParamArrayObj(map, prefix + "DateCountSet.", this.DateCountSet);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,71 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandNegCommentsRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// 查询开始时间
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 查询结束时间
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// 查询条数上限默认20
/// </summary>
[JsonProperty("Limit")]
public ulong? Limit{ get; set; }
/// <summary>
/// 查询偏移默认从0开始
/// </summary>
[JsonProperty("Offset")]
public ulong? Offset{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
this.SetParamSimple(map, prefix + "Limit", this.Limit);
this.SetParamSimple(map, prefix + "Offset", this.Offset);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandNegCommentsResponse : AbstractModel
{
/// <summary>
/// 评论列表
/// </summary>
[JsonProperty("BrandCommentSet")]
public CommentInfo[] BrandCommentSet{ get; set; }
/// <summary>
/// 总的差评个数
/// </summary>
[JsonProperty("TotalComments")]
public ulong? TotalComments{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "BrandCommentSet.", this.BrandCommentSet);
this.SetParamSimple(map, prefix + "TotalComments", this.TotalComments);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,71 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandPosCommentsRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// 查询开始时间
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 查询结束时间
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// 查询条数上限默认20
/// </summary>
[JsonProperty("Limit")]
public ulong? Limit{ get; set; }
/// <summary>
/// 查询偏移从0开始
/// </summary>
[JsonProperty("Offset")]
public ulong? Offset{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
this.SetParamSimple(map, prefix + "Limit", this.Limit);
this.SetParamSimple(map, prefix + "Offset", this.Offset);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandPosCommentsResponse : AbstractModel
{
/// <summary>
/// 评论列表
/// </summary>
[JsonProperty("BrandCommentSet")]
public CommentInfo[] BrandCommentSet{ get; set; }
/// <summary>
/// 总的好评个数
/// </summary>
[JsonProperty("TotalComments")]
public ulong? TotalComments{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "BrandCommentSet.", this.BrandCommentSet);
this.SetParamSimple(map, prefix + "TotalComments", this.TotalComments);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,78 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandSocialOpinionRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// 检索开始时间
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 检索结束时间
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// 查询偏移默认从0开始
/// </summary>
[JsonProperty("Offset")]
public long? Offset{ get; set; }
/// <summary>
/// 查询条数上限默认20
/// </summary>
[JsonProperty("Limit")]
public long? Limit{ get; set; }
/// <summary>
/// 列表显示标记若为true则返回文章列表详情
/// </summary>
[JsonProperty("ShowList")]
public bool? ShowList{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
this.SetParamSimple(map, prefix + "Offset", this.Offset);
this.SetParamSimple(map, prefix + "Limit", this.Limit);
this.SetParamSimple(map, prefix + "ShowList", this.ShowList);
}
}
}

View File

@@ -0,0 +1,71 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandSocialOpinionResponse : AbstractModel
{
/// <summary>
/// 文章总数
/// </summary>
[JsonProperty("ArticleCount")]
public ulong? ArticleCount{ get; set; }
/// <summary>
/// 来源统计总数
/// </summary>
[JsonProperty("FromCount")]
public ulong? FromCount{ get; set; }
/// <summary>
/// 疑似负面报道总数
/// </summary>
[JsonProperty("AdverseCount")]
public ulong? AdverseCount{ get; set; }
/// <summary>
/// 文章列表详情
/// </summary>
[JsonProperty("ArticleSet")]
public BrandReportArticle[] ArticleSet{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "ArticleCount", this.ArticleCount);
this.SetParamSimple(map, prefix + "FromCount", this.FromCount);
this.SetParamSimple(map, prefix + "AdverseCount", this.AdverseCount);
this.SetParamArrayObj(map, prefix + "ArticleSet.", this.ArticleSet);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandSocialReportRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// 查询开始时间
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 查询结束时间
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeBrandSocialReportResponse : AbstractModel
{
/// <summary>
/// 累计统计数据
/// </summary>
[JsonProperty("TotalCount")]
public ulong? TotalCount{ get; set; }
/// <summary>
/// 按天计算的统计数据
/// </summary>
[JsonProperty("DateCountSet")]
public DateCount[] DateCountSet{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "TotalCount", this.TotalCount);
this.SetParamArrayObj(map, prefix + "DateCountSet.", this.DateCountSet);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,78 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeIndustryNewsRequest : AbstractModel
{
/// <summary>
/// 行业ID
/// </summary>
[JsonProperty("IndustryId")]
public string IndustryId{ get; set; }
/// <summary>
/// 查询开始时间
/// </summary>
[JsonProperty("StartDate")]
public string StartDate{ get; set; }
/// <summary>
/// 查询结束时间
/// </summary>
[JsonProperty("EndDate")]
public string EndDate{ get; set; }
/// <summary>
/// 是否显示列表,若为 true则返回文章列表
/// </summary>
[JsonProperty("ShowList")]
public bool? ShowList{ get; set; }
/// <summary>
/// 查询偏移默认从0开始
/// </summary>
[JsonProperty("Offset")]
public long? Offset{ get; set; }
/// <summary>
/// 查询条数上限默认20
/// </summary>
[JsonProperty("Limit")]
public long? Limit{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "IndustryId", this.IndustryId);
this.SetParamSimple(map, prefix + "StartDate", this.StartDate);
this.SetParamSimple(map, prefix + "EndDate", this.EndDate);
this.SetParamSimple(map, prefix + "ShowList", this.ShowList);
this.SetParamSimple(map, prefix + "Offset", this.Offset);
this.SetParamSimple(map, prefix + "Limit", this.Limit);
}
}
}

View File

@@ -0,0 +1,78 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeIndustryNewsResponse : AbstractModel
{
/// <summary>
/// 总计文章数量
/// </summary>
[JsonProperty("NewsCount")]
public ulong? NewsCount{ get; set; }
/// <summary>
/// 总计来源数量
/// </summary>
[JsonProperty("FromCount")]
public ulong? FromCount{ get; set; }
/// <summary>
/// 总计疑似负面数量
/// </summary>
[JsonProperty("AdverseCount")]
public ulong? AdverseCount{ get; set; }
/// <summary>
/// 文章列表
/// </summary>
[JsonProperty("NewsSet")]
public IndustryNews[] NewsSet{ get; set; }
/// <summary>
/// 按天统计的数量列表
/// </summary>
[JsonProperty("DateCountSet")]
public DateCount[] DateCountSet{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "NewsCount", this.NewsCount);
this.SetParamSimple(map, prefix + "FromCount", this.FromCount);
this.SetParamSimple(map, prefix + "AdverseCount", this.AdverseCount);
this.SetParamArrayObj(map, prefix + "NewsSet.", this.NewsSet);
this.SetParamArrayObj(map, prefix + "DateCountSet.", this.DateCountSet);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeUserPortraitRequest : AbstractModel
{
/// <summary>
/// 品牌ID
/// </summary>
[JsonProperty("BrandId")]
public string BrandId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "BrandId", this.BrandId);
}
}
}

View File

@@ -0,0 +1,78 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeUserPortraitResponse : AbstractModel
{
/// <summary>
/// 年龄画像
/// </summary>
[JsonProperty("Age")]
public AgePortraitInfo Age{ get; set; }
/// <summary>
/// 性别画像
/// </summary>
[JsonProperty("Gender")]
public GenderPortraitInfo Gender{ get; set; }
/// <summary>
/// 省份画像
/// </summary>
[JsonProperty("Province")]
public ProvincePortraitInfo Province{ get; set; }
/// <summary>
/// 电影喜好画像
/// </summary>
[JsonProperty("Movie")]
public MoviePortraitInfo Movie{ get; set; }
/// <summary>
/// 明星喜好画像
/// </summary>
[JsonProperty("Star")]
public StarPortraitInfo Star{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamObj(map, prefix + "Age.", this.Age);
this.SetParamObj(map, prefix + "Gender.", this.Gender);
this.SetParamObj(map, prefix + "Province.", this.Province);
this.SetParamObj(map, prefix + "Movie.", this.Movie);
this.SetParamObj(map, prefix + "Star.", this.Star);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class GenderPortrait : AbstractModel
{
/// <summary>
/// 性别
/// </summary>
[JsonProperty("Gender")]
public string Gender{ get; set; }
/// <summary>
/// 百分比
/// </summary>
[JsonProperty("Percent")]
public ulong? Percent{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Gender", this.Gender);
this.SetParamSimple(map, prefix + "Percent", this.Percent);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class GenderPortraitInfo : AbstractModel
{
/// <summary>
/// 用户性别画像数组
/// </summary>
[JsonProperty("PortraitSet")]
public GenderPortrait[] PortraitSet{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "PortraitSet.", this.PortraitSet);
}
}
}

View File

@@ -0,0 +1,99 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class IndustryNews : AbstractModel
{
/// <summary>
/// 行业报道ID
/// </summary>
[JsonProperty("IndustryId")]
public string IndustryId{ get; set; }
/// <summary>
/// 报道发表时间
/// </summary>
[JsonProperty("PubTime")]
public string PubTime{ get; set; }
/// <summary>
/// 报道来源
/// </summary>
[JsonProperty("FromSite")]
public string FromSite{ get; set; }
/// <summary>
/// 报道标题
/// </summary>
[JsonProperty("Title")]
public string Title{ get; set; }
/// <summary>
/// 报道来源url
/// </summary>
[JsonProperty("Url")]
public string Url{ get; set; }
/// <summary>
/// 报道来源等级
/// </summary>
[JsonProperty("Level")]
public ulong? Level{ get; set; }
/// <summary>
/// 热度值
/// </summary>
[JsonProperty("Hot")]
public ulong? Hot{ get; set; }
/// <summary>
/// 报道标识
/// </summary>
[JsonProperty("Flag")]
public ulong? Flag{ get; set; }
/// <summary>
/// 报道摘要
/// </summary>
[JsonProperty("Abstract")]
public string Abstract{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "IndustryId", this.IndustryId);
this.SetParamSimple(map, prefix + "PubTime", this.PubTime);
this.SetParamSimple(map, prefix + "FromSite", this.FromSite);
this.SetParamSimple(map, prefix + "Title", this.Title);
this.SetParamSimple(map, prefix + "Url", this.Url);
this.SetParamSimple(map, prefix + "Level", this.Level);
this.SetParamSimple(map, prefix + "Hot", this.Hot);
this.SetParamSimple(map, prefix + "Flag", this.Flag);
this.SetParamSimple(map, prefix + "Abstract", this.Abstract);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class MoviePortrait : AbstractModel
{
/// <summary>
/// 电影名称
/// </summary>
[JsonProperty("Name")]
public string Name{ get; set; }
/// <summary>
/// 百分比
/// </summary>
[JsonProperty("Percent")]
public float? Percent{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Name", this.Name);
this.SetParamSimple(map, prefix + "Percent", this.Percent);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class MoviePortraitInfo : AbstractModel
{
/// <summary>
/// 用户喜好电影画像数组
/// </summary>
[JsonProperty("PortraitSet")]
public MoviePortrait[] PortraitSet{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "PortraitSet.", this.PortraitSet);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class ProvincePortrait : AbstractModel
{
/// <summary>
/// 省份名称
/// </summary>
[JsonProperty("Province")]
public string Province{ get; set; }
/// <summary>
/// 百分比
/// </summary>
[JsonProperty("Percent")]
public float? Percent{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Province", this.Province);
this.SetParamSimple(map, prefix + "Percent", this.Percent);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class ProvincePortraitInfo : AbstractModel
{
/// <summary>
/// 用户省份画像数组
/// </summary>
[JsonProperty("PortraitSet")]
public ProvincePortrait[] PortraitSet{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "PortraitSet.", this.PortraitSet);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class StarPortrait : AbstractModel
{
/// <summary>
/// 喜欢的明星名字
/// </summary>
[JsonProperty("Name")]
public string Name{ get; set; }
/// <summary>
/// 百分比
/// </summary>
[JsonProperty("Percent")]
public float? Percent{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Name", this.Name);
this.SetParamSimple(map, prefix + "Percent", this.Percent);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbm.V20180129.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class StarPortraitInfo : AbstractModel
{
/// <summary>
/// 用户喜好的明星画像数组
/// </summary>
[JsonProperty("PortraitSet")]
public StarPortrait[] PortraitSet{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "PortraitSet.", this.PortraitSet);
}
}
}