共用方式為


NotificationInfo 類別

  • java.lang.Object
    • com.microsoft.bot.schema.teams.NotificationInfo

public class NotificationInfo

指定是否要針對提及傳送通知。

建構函式摘要

建構函式 Description
NotificationInfo()

通知資訊的新實例。

NotificationInfo(boolean withAlertInMeeting, String withExternalResourceUrl)

會議警示的新實例。

NotificationInfo(Boolean withAlert)

通知資訊的新實例。

方法摘要

修飾詞與類型 方法與描述
java.lang.Boolean getAlert()

適用於警示的 Getter。

java.lang.Boolean getAlertInMeeting()

指出這是會議警示。

java.lang.String getExternalResourceUrl()

取得會議警示的資源 URL。

void setAlert(Boolean withAlert)

警示的 Setter。

void setAlertInMeeting(Boolean withAlertInMeeting)

指出這是會議警示。

void setExternalResourceUrl(String withExternalResourceUrl)

會議警示的資源URL。

方法繼承來源 java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

建構函式詳細資料

NotificationInfo

public NotificationInfo()

NotificationInfo 的新實例。

NotificationInfo

public NotificationInfo(boolean withAlertInMeeting, String withExternalResourceUrl)

會議警示的新實例。

參數:

withAlertInMeeting - 如果這是會議警示,則為 True。
withExternalResourceUrl - 外部資源URL。

NotificationInfo

public NotificationInfo(Boolean withAlert)

NotificationInfo 的新實例。

參數:

withAlert - 要設定的警示值。

方法詳細資料

getAlert

public Boolean getAlert()

適用於警示的 Getter。

傳回:

會傳回改變值。

getAlertInMeeting

public Boolean getAlertInMeeting()

指出這是會議警示。

傳回:

如果這是會議警示,則為 True。

getExternalResourceUrl

public String getExternalResourceUrl()

取得會議警示的資源 URL。

傳回:

外部資源URL。

setAlert

public void setAlert(Boolean withAlert)

警示的 Setter。

參數:

withAlert - 要設定的值。

setAlertInMeeting

public void setAlertInMeeting(Boolean withAlertInMeeting)

指出這是會議警示。

參數:

withAlertInMeeting - 如果這是會議警示,則為 True。

setExternalResourceUrl

public void setExternalResourceUrl(String withExternalResourceUrl)

會議警示的資源URL。

參數:

withExternalResourceUrl - 外部資源URL。

適用於