class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPropertySummary

A virtual resource representing metadata for an GA4 property.

Attributes

display_name[RW]

Display name for the property referred to in this account summary. Corresponds to the JSON property `displayName` @return [String]

property[RW]

Resource name of property referred to by this property summary Format: properties/`property_id` Example: “properties/1000” Corresponds to the JSON property `property` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 2012
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 2017
def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @property = args[:property] if args.key?(:property)
end