Show / Hide Table of Contents

Class Upload

Metadata returned for an upload operation.

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

Properties

AccountId

Account Id to which this upload belongs.

Declaration
[JsonProperty("accountId")]
public virtual long? AccountId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

CustomDataSourceId

Custom data source Id to which this data import belongs.

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

Errors

Data import errors collection.

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

ETag

The ETag of the item.

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

Id

A unique ID for this upload.

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

Kind

Resource type for Analytics upload.

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

Status

Upload status. Possible values: PENDING, COMPLETED, FAILED, DELETING, DELETED.

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

UploadTime

System.DateTime representation of UploadTimeRaw.

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

UploadTimeRaw

Time this file is uploaded.

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

Implements

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