analytics.UserDimensions class

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

サイン:

export declare class UserDimensions 

コンストラクター

コンストラクタ修飾子説明
(コンストラクター)(wireFormat) UserDimensionsクラスの新しいインスタンスを構築します

プロパティ

財産修飾子タイプ説明
アプリ情報アプリ情報アプリ情報。
バンドル情報バンドル情報のエクスポートこれらのイベントがアップロードされたバンドルに関する情報。
デバイス情報デバイス情報デバイス情報。
最初のオープン時間ユーザーが最初にアプリを開いた時刻 (UTC)。
地理情報地理情報ユーザーの地理情報。
ユーザーIDsetUserId 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)
ユーザープロパティ{ [キー: 文字列]: UserPropertyValue ; } [ setUserProperty ](https://firebase.google.com/docs/analytics/android/properties) A​​PI で設定されたユーザー プロパティのマップ。すべての値は [ UserPropertyValue ](providers_analytics_.userpropertyvalue) オブジェクトです。

Analytics.UserDimensions.(コンストラクター)

UserDimensionsクラスの新しいインスタンスを構築します

サイン:

constructor(wireFormat: any);

パラメーター

パラメータタイプ説明
ワイヤーフォーマットどれでも

Analytics.UserDimensions.appInfo

アプリ情報。

サイン:

appInfo?: AppInfo;

Analytics.UserDimensions.bundleInfo

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

サイン:

bundleInfo: ExportBundleInfo;

分析.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) A​​PI。

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

サイン:

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