NIMSDK-AOS  9.16.0
CanceledInviteEvent.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.avsignalling.event;
2 
6 public class CanceledInviteEvent extends ChannelCommonEvent {
7 
8  private String toAccount;
9  private String requestId;
10 
11 
12  public CanceledInviteEvent(SignallingEvent event, String toAccount, String requestId) {
13  super(event);
14  this.toAccount = toAccount;
15  this.requestId = requestId;
16  }
17 
21  public String getToAccount() {
22  return toAccount;
23  }
24 
28  public String getRequestId() {
29  return requestId;
30  }
31 
32 }
CanceledInviteEvent(SignallingEvent event, String toAccount, String requestId)
String getRequestId()
由发起者生成的唯一请求标识
String getToAccount()
被操作者帐号id , 即取消了对谁的邀请