Show / Hide Table of Contents

Class BulkCheckResponse

Response for BulkCheck call. Results are sent in a list in the same order in which they were sent. Individual check errors are described in the appropriate check_results entry. If the entire call fails, the response will include a bulk_error_code field describing the error.

Inheritance
object
BulkCheckResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Digitalassetlinks.v1.Data
Assembly: Google.Apis.Digitalassetlinks.v1.dll
Syntax
public class BulkCheckResponse : IDirectResponseSchema

Properties

BulkErrorCode

Error code for the entire request. Present only if the entire request failed. Individual check errors will not trigger the presence of this field.

Declaration
[JsonProperty("bulkErrorCode")]
public virtual string BulkErrorCode { get; set; }
Property Value
Type Description
string

CheckResults

List of results for each check request. Results are returned in the same order in which they were sent in the request.

Declaration
[JsonProperty("checkResults")]
public virtual IList<CheckResponse> CheckResults { get; set; }
Property Value
Type Description
IList<CheckResponse>

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX