Class ParameterMutation
Defines an event parameter to mutate.
Implements
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class ParameterMutation : IMessage<ParameterMutation>, IEquatable<ParameterMutation>, IDeepCloneable<ParameterMutation>, IBufferMessage, IMessage
Constructors
ParameterMutation()
Declaration
public ParameterMutation()
ParameterMutation(ParameterMutation)
Declaration
public ParameterMutation(ParameterMutation other)
Parameters
Type | Name | Description |
---|---|---|
ParameterMutation | other |
Properties
Parameter
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.
Declaration
public string Parameter { get; set; }
Property Value
Type | Description |
---|---|
string |
ParameterValue
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.
Declaration
public string ParameterValue { get; set; }
Property Value
Type | Description |
---|---|
string |