import { NIMUser } from './User';

/**
 * 好友
 * - [相关文档](https://dev.yunxin.163.com/docs/interface/即时通讯Web端/NIMSDK-Web/Friend.html)
 */
export interface NIMFriend {
  account: NIMUser['account'];
  /** 昵称 */
  alias: string;
  /** 扩展字段, 开发者可以自行扩展, 建议封装成JSON格式字符串 */
  custom: string;
  /** 成为好友的时间(ms) */
  createTime: number;
  /** 更新时间(ms) */
  updateTime: number;
}
