Show / Hide Table of Contents

Class DeviceInfo

Signals associated with the device making the request.

Inheritance
System.Object
DeviceInfo
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.FirebaseDynamicLinks.v1.Data
Assembly: Google.Apis.FirebaseDynamicLinks.v1.dll
Syntax
public class DeviceInfo : IDirectResponseSchema

Properties

DeviceModelName

Device model name.

Declaration
[JsonProperty("deviceModelName")]
public virtual string DeviceModelName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LanguageCode

Device language code setting.

Declaration
[JsonProperty("languageCode")]
public virtual string LanguageCode { get; set; }
Property Value
Type Description
System.String

LanguageCodeFromWebview

Device language code setting obtained by executing JavaScript code in WebView.

Declaration
[JsonProperty("languageCodeFromWebview")]
public virtual string LanguageCodeFromWebview { get; set; }
Property Value
Type Description
System.String

LanguageCodeRaw

Device language code raw setting. iOS does returns language code in different format than iOS WebView. For example WebView returns en_US, but iOS returns en-US. Field below will return raw value returned by iOS.

Declaration
[JsonProperty("languageCodeRaw")]
public virtual string LanguageCodeRaw { get; set; }
Property Value
Type Description
System.String

ScreenResolutionHeight

Device display resolution height.

Declaration
[JsonProperty("screenResolutionHeight")]
public virtual long? ScreenResolutionHeight { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ScreenResolutionWidth

Device display resolution width.

Declaration
[JsonProperty("screenResolutionWidth")]
public virtual long? ScreenResolutionWidth { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Timezone

Device timezone setting.

Declaration
[JsonProperty("timezone")]
public virtual string Timezone { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top