Show / Hide Table of Contents

Class Activity.EventsData.SensitiveParametersData

Includes sensitive parameter value pairs for various applications.

Inheritance
object
Activity.EventsData.SensitiveParametersData
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.SensitiveParametersData

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.SensitiveParametersData.MessageValueData MessageValue { get; set; }
Property Value
Type Description
Activity.EventsData.SensitiveParametersData.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.SensitiveParametersData.MultiMessageValueData> MultiMessageValue { get; set; }
Property Value
Type Description
IList<Activity.EventsData.SensitiveParametersData.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