Class: Google::Analytics::Admin::V1alpha::ParameterMutation
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::ParameterMutation
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb
Overview
Defines an event parameter to mutate.
Instance Attribute Summary collapse
-
#parameter ⇒ ::String
Required.
-
#parameter_value ⇒ ::String
Required.
Instance Attribute Details
#parameter ⇒ ::String
Returns Required. The name of the parameter to mutate. This value must:
- be less than 40 characters.
- be unique across across all mutations within the rule
- consist only of letters, digits or _ (underscores) For event edit rules, the name may also be set to 'event_name' to modify the event_name in place.
42 43 44 45 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 42 class ParameterMutation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parameter_value ⇒ ::String
Returns Required. The value mutation to perform.
- Must be less than 100 characters.
- To specify a constant value for the param, use the value's string.
- To copy value from another parameter, use syntax like "[[other_parameter]]" For more details, see this help center article.
42 43 44 45 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 42 class ParameterMutation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |