Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
hrxiang committed Jun 14, 2022
1 parent e35ff84 commit 27ecdd9
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ public class SignalingInvitationInfo {
private String groupID; //如果是单聊,为""
private String roomID; //房间ID,必须唯一,可以不设置。
private long timeout; //邀请超时时间(秒)
private long initiateTime; //邀请超时时间(秒)
private String mediaType; //video 或者audio
private int sessionType; //1为单聊,2为群聊
private int platformID; //和之前定义一致
Expand Down Expand Up @@ -52,6 +53,14 @@ public void setTimeout(long timeout) {
this.timeout = timeout;
}

public long getInitiateTime() {
return initiateTime;
}

public void setInitiateTime(long initiateTime) {
this.initiateTime = initiateTime;
}

public String getMediaType() {
return mediaType;
}
Expand Down

0 comments on commit 27ecdd9

Please sign in to comment.