Show / Hide Table of Contents

Class Activity.EventsData.ParametersData

Parameter value pairs for various applications. For more information about eventName parameters, see the list of event names for various applications above in applicationName.

Inheritance
object
Activity.EventsData.ParametersData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Admin.Reports.reports_v1.Data
Assembly: Google.Apis.Admin.Reports.reports_v1.dll
Syntax
public class Activity.EventsData.ParametersData

Properties

BoolValue

Boolean value of the parameter.

Declaration
[JsonProperty("boolValue")]
public virtual bool? BoolValue { get; set; }
Property Value
Type Description
bool?

IntValue

Integer value of the parameter.

Declaration
[JsonProperty("intValue")]
public virtual long? IntValue { get; set; }
Property Value
Type Description
long?

MessageValue

Nested parameter value pairs associated with this parameter. Complex value type for a parameter are returned as a list of parameter values. For example, the address parameter may have a value as [{parameter: [{name: city, value: abc}]}]

Declaration
[JsonProperty("messageValue")]
public virtual Activity.EventsData.ParametersData.MessageValueData MessageValue { get; set; }
Property Value
Type Description
Activity.EventsData.ParametersData.MessageValueData

MultiIntValue

Integer values of the parameter.

Declaration
[JsonProperty("multiIntValue")]
public virtual IList<long?> MultiIntValue { get; set; }
Property Value
Type Description
IList<long?>

MultiMessageValue

List of messageValue objects.

Declaration
[JsonProperty("multiMessageValue")]
public virtual IList<Activity.EventsData.ParametersData.MultiMessageValueData> MultiMessageValue { get; set; }
Property Value
Type Description
IList<Activity.EventsData.ParametersData.MultiMessageValueData>

MultiValue

String values of the parameter.

Declaration
[JsonProperty("multiValue")]
public virtual IList<string> MultiValue { get; set; }
Property Value
Type Description
IList<string>

Name

The name of the parameter.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Value

String value of the parameter.

Declaration
[JsonProperty("value")]
public virtual string Value { get; set; }
Property Value
Type Description
string
In this article
Back to top Generated by DocFX