using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// HoloGraphicContactInfo Data Structure.
///
[Serializable]
public class HoloGraphicContactInfo : AopObject
{
///
/// 主叫通话频次
///
[JsonProperty("call_frequency")]
public long CallFrequency { get; set; }
///
/// 主叫通话时长
///
[JsonProperty("call_time")]
public long CallTime { get; set; }
///
/// 被叫通话频次
///
[JsonProperty("called_frequency")]
public long CalledFrequency { get; set; }
///
/// 被叫通话时长
///
[JsonProperty("called_time")]
public long CalledTime { get; set; }
///
/// 手机号
///
[JsonProperty("mobile")]
public string Mobile { get; set; }
///
/// 通话频次
///
[JsonProperty("talk_frequency")]
public long TalkFrequency { get; set; }
///
/// 通话时长
///
[JsonProperty("talk_time")]
public long TalkTime { get; set; }
}
}