Show / Hide Table of Contents

Class CheckResponse

Response message for the CheckAssetLinks call.

Inheritance
System.Object
CheckResponse
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.Digitalassetlinks.v1.Data
Assembly: Google.Apis.Digitalassetlinks.v1.dll
Syntax
public class CheckResponse : IDirectResponseSchema

Properties

DebugString

Human-readable message containing information intended to help end users understand, reproduce and debug the result. The message will be in English and we are currently not planning to offer any translations. Please note that no guarantees are made about the contents or format of this string. Any aspect of it may be subject to change without notice. You should not attempt to programmatically parse this data. For programmatic access, use the error_code field below.

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

ErrorCode

Error codes that describe the result of the Check operation.

Declaration
[JsonProperty("errorCode")]
public virtual IList<string> ErrorCode { 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

Linked

Set to true if the assets specified in the request are linked by the relation specified in the request.

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

MaxAge

From serving time, how much longer the response should be considered valid barring further updates. REQUIRED

Declaration
[JsonProperty("maxAge")]
public virtual object MaxAge { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
In This Article
Back to top