/** nim收藏模型 */
export interface NIMCollect {
  /** 收藏的ID，由云信自动生成 */
  id: string;
  /** 类型，开发者可自定义映射关系，只能是整数 */
  type: number;
  /** 收藏的具体数据内容，最大20480 */
  data: string;
  /** 扩展字段，最大1024 */
  custom: string;
  /** 唯一ID，可用于去重，由开发者自定义 */
  uniqueId: string;
  /** 创建时间 */
  createTime: number;
  /** 更新时间 */
  updateTime: number;
}
