Show / Hide Table of Contents

Class Property

A resource message representing a Google Analytics GA4 property.

Inheritance
System.Object
Property
Implements
Google.Protobuf.IMessage<Property>
System.IEquatable<Property>
Google.Protobuf.IDeepCloneable<Property>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class Property : IMessage<Property>, IEquatable<Property>, IDeepCloneable<Property>, IBufferMessage, IMessage

Constructors

Property()

Declaration
public Property()

Property(Property)

Declaration
public Property(Property other)
Parameters
Type Name Description
Property other

Properties

CreateTime

Output only. Time when the entity was originally created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp

CurrencyCode

The currency type used in reports involving monetary values.

Format: https://en.wikipedia.org/wiki/ISO_4217 Examples: "USD", "EUR", "JPY"

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

Deleted

Output only. Indicates whether this Property is soft-deleted or not. Deleted properties are excluded from List results unless specifically requested.

Declaration
public bool Deleted { get; set; }
Property Value
Type Description
System.Boolean

DisplayName

Required. Human-readable display name for this property.

The max allowed display name length is 100 UTF-16 code units.

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

IndustryCategory

Industry associated with this property Example: AUTOMOTIVE, FOOD_AND_DRINK

Declaration
public IndustryCategory IndustryCategory { get; set; }
Property Value
Type Description
IndustryCategory

Name

Output only. Resource name of this property. Format: properties/{property_id} Example: "properties/1000"

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

Parent

Immutable. Resource name of this property's logical parent.

Note: The Property-Moving UI can be used to change the parent. Format: accounts/{account} Example: "accounts/100"

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

PropertyName

PropertyName-typed view over the Name resource name property.

Declaration
public PropertyName PropertyName { get; set; }
Property Value
Type Description
PropertyName

TimeZone

Reporting Time Zone, used as the day boundary for reports, regardless of where the data originates. If the time zone honors DST, Analytics will automatically adjust for the changes.

NOTE: Changing the time zone only affects data going forward, and is not applied retroactively.

Format: https://www.iana.org/time-zones Example: "America/Los_Angeles"

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

UpdateTime

Output only. Time when entity payload fields were last updated.

Declaration
public Timestamp UpdateTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp
Back to top