analytics.UserDimensions class

イベントをトリガーしたユーザーを表すインターフェース。

署名:

export declare class UserDimensions 

コンストラクタ

コンストラクタ 修飾キー 説明
(コンストラクタ)(wireFormat) UserDimensions クラスの新しいインスタンスを作成します。

プロパティ

プロパティ 修飾キー タイプ 説明
appInfo AppInfo アプリ情報。
bundleInfo ExportBundleInfo これらのイベントがアップロードされたバンドルに関する情報。
deviceInfo デバイス情報 デバイス情報。
firstOpenTime 文字列 ユーザーが初めてアプリを開いた時刻(UTC)。
geoInfo 地域情報 ユーザーの地域情報。
userId 文字列 setUserId API で設定されたユーザー ID。[Android](https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.html#setUserId(java.lang.String)) [iOS](https://firebase.google.com/docs/reference/ios/firebaseanalytics/api/reference/Classes/FIRAnalytics#/c:objc(cs)FIRAnalytics(cm)setUserID)
userProperties { [キー: 文字列]: UserPropertyValue;} [setUserProperty](https://firebase.google.com/docs/analytics/android/properties) API で設定されたユーザー プロパティのマップ。すべての値は [UserPropertyValue](providers_analytics_.userpropertyvalue) オブジェクトです。

analytics.UserDimensions.(コンストラクタ)

UserDimensions クラスの新しいインスタンスを作成します。

署名:

constructor(wireFormat: any);

パラメータ

パラメータ 説明
wireFormat 任意

analytics.UserDimensions.appInfo

アプリ情報。

署名:

appInfo?: AppInfo;

analytics.UserDimensions.bundleInfo

これらのイベントがアップロードされたバンドルに関する情報。

署名:

bundleInfo: ExportBundleInfo;

analytics.UserDimensions.deviceInfo

デバイス情報。

署名:

deviceInfo: DeviceInfo;

analytics.UserDimensions.firstOpenTime

ユーザーが初めてアプリを開いた時刻(UTC)。

署名:

firstOpenTime?: string;

analytics.UserDimensions.geoInfo 設定

ユーザーの地域情報。

署名:

geoInfo: GeoInfo;

analytics.UserDimensions.userId

setUserId API で設定されたユーザー ID。[Android](https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.html#setUserId(java.lang.String)) [iOS](https://firebase.google.com/docs/reference/ios/firebaseanalytics/api/reference/Classes/FIRAnalytics#/c:objc(cs)FIRAnalytics(cm)setUserID)

署名:

userId?: string;

analytics.UserDimensions.userProperties ユーザー

[setUserProperty](https://firebase.google.com/docs/analytics/android/properties) API で設定されたユーザー プロパティのマップ。

値はすべて [UserPropertyValue](providers_analytics_.userpropertyvalue) オブジェクトです。

署名:

userProperties: {
        [key: string]: UserPropertyValue;
    };