Show / Hide Table of Contents

Class Filter

JSON template for an Analytics account filter.

Inheritance
System.Object
Filter
Implements
Google.Apis.Requests.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.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class Filter : IDirectResponseSchema

Properties

AccountId

Account ID to which this filter belongs.

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

AdvancedDetails

Details for the filter of the type ADVANCED.

Declaration
[JsonProperty("advancedDetails")]
public virtual Filter.AdvancedDetailsData AdvancedDetails { get; set; }
Property Value
Type Description
Filter.AdvancedDetailsData

Created

System.DateTime representation of CreatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Created { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

CreatedRaw

Time this filter was created.

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

ETag

The ETag of the item.

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

ExcludeDetails

Details for the filter of the type EXCLUDE.

Declaration
[JsonProperty("excludeDetails")]
public virtual FilterExpression ExcludeDetails { get; set; }
Property Value
Type Description
FilterExpression

Id

Filter ID.

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

IncludeDetails

Details for the filter of the type INCLUDE.

Declaration
[JsonProperty("includeDetails")]
public virtual FilterExpression IncludeDetails { get; set; }
Property Value
Type Description
FilterExpression

Kind

Resource type for Analytics filter.

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

LowercaseDetails

Details for the filter of the type LOWER.

Declaration
[JsonProperty("lowercaseDetails")]
public virtual Filter.LowercaseDetailsData LowercaseDetails { get; set; }
Property Value
Type Description
Filter.LowercaseDetailsData

Name

Name of this filter.

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

ParentLink

Parent link for this filter. Points to the account to which this filter belongs.

Declaration
[JsonProperty("parentLink")]
public virtual Filter.ParentLinkData ParentLink { get; set; }
Property Value
Type Description
Filter.ParentLinkData

SearchAndReplaceDetails

Details for the filter of the type SEARCH_AND_REPLACE.

Declaration
[JsonProperty("searchAndReplaceDetails")]
public virtual Filter.SearchAndReplaceDetailsData SearchAndReplaceDetails { get; set; }
Property Value
Type Description
Filter.SearchAndReplaceDetailsData

SelfLink

Link for this filter.

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

Type

Type of this filter. Possible values are INCLUDE, EXCLUDE, LOWERCASE, UPPERCASE, SEARCH_AND_REPLACE and ADVANCED.

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

Updated

System.DateTime representation of UpdatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Updated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

UpdatedRaw

Time this filter was last modified.

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

UppercaseDetails

Details for the filter of the type UPPER.

Declaration
[JsonProperty("uppercaseDetails")]
public virtual Filter.UppercaseDetailsData UppercaseDetails { get; set; }
Property Value
Type Description
Filter.UppercaseDetailsData

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top