Show / Hide Table of Contents

Class StringFilter

The filter for string

Inheritance
System.Object
StringFilter
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AnalyticsData.v1alpha.Data
Assembly: Google.Apis.AnalyticsData.v1alpha.dll
Syntax
public class StringFilter : IDirectResponseSchema

Properties

CaseSensitive

If true, the string value is case sensitive.

Declaration
[JsonProperty("caseSensitive")]
public virtual bool? CaseSensitive { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MatchType

The match type for this filter.

Declaration
[JsonProperty("matchType")]
public virtual string MatchType { get; set; }
Property Value
Type Description
System.String

Value

The string value used for the matching.

Declaration
[JsonProperty("value")]
public virtual string Value { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top