Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListEventEditRulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListEventEditRulesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
Response message for ListEventEditRules RPC.
Instance Attribute Summary collapse
-
#event_edit_rules ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventEditRule>
List of EventEditRules.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaListEventEditRulesResponse
constructor
A new instance of GoogleAnalyticsAdminV1alphaListEventEditRulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaListEventEditRulesResponse
Returns a new instance of GoogleAnalyticsAdminV1alphaListEventEditRulesResponse.
4383 4384 4385 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4383 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event_edit_rules ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventEditRule>
List of EventEditRules. These will be ordered stably, but in an arbitrary
order.
Corresponds to the JSON property eventEditRules
4375 4376 4377 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4375 def event_edit_rules @event_edit_rules end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4381 4382 4383 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4381 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4388 4389 4390 4391 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4388 def update!(**args) @event_edit_rules = args[:event_edit_rules] if args.key?(:event_edit_rules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |