ConsentCategory
Tealium for Android(Kotlin)によって提供されるConsentCategoryクラスとメソッドのリファレンスガイド。
クラス: ConsentCategory
以下は、KotlinのConsentCategory
クラスの一般的に使用されるメソッドをまとめたものです。
メソッド | 説明 |
---|---|
ALL |
サポートされているすべての同意カテゴリのリストを返します |
consentCategory(String) |
与えられたStringに関連するConsentCategoryを返します。それ以外の場合はnull |
consentCategories(Set<String>) |
与えられたStringsに関連するConsentCategory オブジェクトのセットを返します。無効なエントリは無視されます。 |
ALL
利用可能なすべてのConsentCategory
アイテムの完全なセットを返します。
ConsentCategory.ALL
以下は、利用可能なカテゴリの全セットです:
setOf(
AFFILIATES,
ANALYTICS,
BIG_DATA,
CDP,
COOKIEMATCH,
CRM,
DISPLAY_ADS,
EMAIL,
ENGAGEMENT,
MOBILE,
MONITORING,
PERSONALIZATION,
SEARCH,
SOCIAL,
MISC
)
consentCategory(String)
与えられたStringに対応するConsentCategory
を返します。パラメータは大文字小文字を区別しません。
ConsentCategory.consentCategory("cdp") // ConsentCategory.CDPを返します
consentCategories(Set<String>)
与えられたStringsに対応するConsentCategory
オブジェクトのセットを返します。パラメータは大文字小文字を区別しません。
ConsentCategory.consentCategories(setOf("cdp", "invalid", "email"))
// setOf(ConsentCategory.CDP, ConsentCategory.EMAIL)を返します
最終更新日 :: 2024年March月29日