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.
4230 4231 4232 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4230 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
4222 4223 4224 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4222 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
4228 4229 4230 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4228 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4235 4236 4237 4238 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4235 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 |