Show / Hide Table of Contents

Class CustomDataSource

JSON template for an Analytics custom data source.

Inheritance
System.Object
CustomDataSource
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 CustomDataSource : IDirectResponseSchema

Properties

AccountId

Account ID to which this custom data source belongs.

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

ChildLink

Declaration
[JsonProperty("childLink")]
public virtual CustomDataSource.ChildLinkData ChildLink { get; set; }
Property Value
Type Description
CustomDataSource.ChildLinkData

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 custom data source was created.

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

Description

Description of custom data source.

Declaration
[JsonProperty("description")]
public virtual string Description { 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

Id

Custom data source ID.

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

ImportBehavior

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

Kind

Resource type for Analytics custom data source.

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

Name

Name of this custom data source.

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

ParentLink

Parent link for this custom data source. Points to the web property to which this custom data source belongs.

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

ProfilesLinked

IDs of views (profiles) linked to the custom data source.

Declaration
[JsonProperty("profilesLinked")]
public virtual IList<string> ProfilesLinked { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Schema

Collection of schema headers of the custom data source.

Declaration
[JsonProperty("schema")]
public virtual IList<string> Schema { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

SelfLink

Link for this Analytics custom data source.

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

Type

Type of the custom data source.

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 custom data source was last modified.

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

UploadType

Upload type of the custom data source.

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

WebPropertyId

Web property ID of the form UA-XXXXX-YY to which this custom data source belongs.

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

Implements

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