预约提醒消息(DG:AppointmentMsg)

图文消息

发送预约提醒消息的数据结构, 在基础结构上添加appointment字段

{
  messageType: 'DG:AppointmentMsg',
  targerId: string,
  type: RongIMLib.ConversationType, // 单聊、群聊等等
  content: {
    user: {
      send: Object, // 发送方用户信息
      target: Object // 接收方用户信息
    },
    appointment: {
      id: '', // 预约id
      data: Object[] // [{ key: '预约时间', '2021-8-26' }]
      // time: '', // 预约时间
      // location: '', // 预约地点
      // doctor_name: '', // 预约医生
      // project_name: '' // 预约项目
    }
  }
}
Last Updated:
Contributors: chwech