Show / Hide Table of Contents

Class Errors

Request Error information.

The presence of an error field signals that the operation has failed.

Inheritance
System.Object
Errors
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.YouTubeAnalytics.v2.Data
Assembly: Google.Apis.YouTubeAnalytics.v2.dll
Syntax
public class Errors : IDirectResponseSchema

Properties

Code

Global error code. Deprecated and ignored. Set custom error codes in ErrorProto.domain and ErrorProto.code instead.

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

Error

Specific error description and codes

Declaration
[JsonProperty("error")]
public virtual IList<ErrorProto> Error { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ErrorProto>

ETag

The ETag of the item.

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

RequestId

Request identifier generated by the service, which can be used to identify the error in the logs

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

Implements

IDirectResponseSchema
Back to top