-
public abstract class InAppMessagingDelegateアプリ内メッセージで発生するイベントを委譲するためのクラスです。
-
-
Constructor Summary
Constructors Constructor Description InAppMessagingDelegate()
-
Method Summary
Modifier and Type Method Description UnitonWindowPresented()アプリ内メッセージ用のWindowが表示されたことを通知します。 UnitonWindowDismissed()アプリ内メッセージ用のWindowが非表示になったことを通知します。 UnitonPresented(String campaignId, String shortenId)接客サービスアクションが表示されたことを通知します。 UnitonDismissed(String campaignId, String shortenId)接客サービスアクションが非表示になったことを通知します。 BooleanshouldOpenURL(Uri url)接客サービスアクション中のボタンがクリックされた際に、リンクをSDK側で自動的に処理するかどうか問い合わせます。 -
-
Method Detail
-
onWindowPresented
Unit onWindowPresented()
アプリ内メッセージ用のWindowが表示されたことを通知します。
-
onWindowDismissed
Unit onWindowDismissed()
アプリ内メッセージ用のWindowが非表示になったことを通知します。
-
onPresented
Unit onPresented(String campaignId, String shortenId)
接客サービスアクションが表示されたことを通知します。
- Parameters:
campaignId- 接客サービスのキャンペーンIDshortenId- 接客サービスアクションの短縮ID
-
onDismissed
Unit onDismissed(String campaignId, String shortenId)
接客サービスアクションが非表示になったことを通知します。
- Parameters:
campaignId- 接客サービスのキャンペーンIDshortenId- 接客サービスアクションの短縮ID
-
shouldOpenURL
Boolean shouldOpenURL(Uri url)
接客サービスアクション中のボタンがクリックされた際に、リンクをSDK側で自動的に処理するかどうか問い合わせます。
- Parameters:
url- リンクURL
-
-
-
-