显示触发事件的用户的界面。
签名:
export declare class UserDimensions
构造函数
构造函数 | 修饰符 | 说明 |
---|---|---|
(构造函数)(wireFormat) | 构造 UserDimensions 类的新实例 |
属性
属性 | 修饰符 | 类型 | 说明 |
---|---|---|---|
应用信息 | 应用信息 | 应用信息。 | |
bundleInfo | ExportBundleInfo | 上传这些事件的软件包的相关信息。 | |
deviceInfo | 设备信息 | 设备信息。 | |
firstOpenTime | 字符串 | 用户首次打开应用的时间(采用世界协调时间)。 | |
geoInfo | 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 | { [key: string]: 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
用户首次打开应用的时间(采用世界协调时间)。
签名:
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;
};