using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipaySocialBaseMcommentNewsfeedAddModel Data Structure. /// [Serializable] public class AlipaySocialBaseMcommentNewsfeedAddModel : AopObject { /// /// 活动地点名称 /// [JsonProperty("activity_address")] public string ActivityAddress { get; set; } /// /// 活动名称 /// [JsonProperty("activity_name")] public string ActivityName { get; set; } /// /// 动态关联的现场id /// [JsonProperty("aid")] public string Aid { get; set; } /// /// 业务系统ID,必须保证唯一性 规则:uid@时间戳 /// [JsonProperty("biz_no")] public string BizNo { get; set; } /// /// 动态的文字内容 /// [JsonProperty("content")] public string Content { get; set; } /// /// 红包信息 /// [JsonProperty("gift_info")] public NewsfeedMediaGiftInfo GiftInfo { get; set; } /// /// 图片信息 /// [JsonProperty("img_infos")] public List ImgInfos { get; set; } /// /// 动态的标题信息 /// [JsonProperty("label_info")] public NewsfeedLabelInfo LabelInfo { get; set; } /// /// 链接信息(link类型时必填) /// [JsonProperty("link_info")] public NewsfeedMediaLinkInfo LinkInfo { get; set; } /// /// 动态相关的地理位置(发给现场的动态必填) /// [JsonProperty("location_info")] public NewsfeedLocationInfo LocationInfo { get; set; } /// /// 地理位置名称 /// [JsonProperty("location_name")] public string LocationName { get; set; } /// /// 地理位置跳转链接(当前支持https和alipay开头) /// [JsonProperty("location_scheme")] public string LocationScheme { get; set; } /// /// 场景码,生活圈默认LFC /// [JsonProperty("scene_code")] public string SceneCode { get; set; } /// /// 支持口碑评论等特殊类型需要的评分,不为空可显示星级评分 满分10分,每1分代表半颗星 /// [JsonProperty("score")] public long Score { get; set; } /// /// 接口请求来源 /// [JsonProperty("source")] public string Source { get; set; } /// /// 用于标识来源app的图标 /// [JsonProperty("source_icon")] public string SourceIcon { get; set; } /// /// 用于标识来源APP的名称 /// [JsonProperty("source_name")] public string SourceName { get; set; } /// /// 个人动态扩散范围:0只生活圈, 1只现场,2既有生活圈也有现场 /// [JsonProperty("spread_range")] public long SpreadRange { get; set; } /// /// 动态的类型:text纯文本, image图片,video视频,link链接 ,crossVideo横屏视频 /// [JsonProperty("type")] public string Type { get; set; } /// /// 用户ID /// [JsonProperty("user_id")] public string UserId { get; set; } /// /// video信息(video、crossVideo类型时必填) /// [JsonProperty("video_info")] public NewsfeedMediaVideoInfo VideoInfo { get; set; } /// /// 动态的可见性:0公开,1私密(仅本人可见) /// [JsonProperty("visible")] public long Visible { get; set; } /// /// 动态的可见范围 visible为0,1时,为空列表 visible为2时,表示可见的标签分组列表, visible为3时,表示不可见的标签分组列表 /// [JsonProperty("visible_range")] public List VisibleRange { get; set; } /// /// 和谁在一起,用户列表 /// [JsonProperty("with_me")] public List WithMe { get; set; } } }