Show / Hide Table of Contents

Class RevisionCheckResponse

This is a JSON template for the result of checking a revision.

Inheritance
System.Object
RevisionCheckResponse
Implements
IDirectResponseSchema
Namespace: Google.Apis.Games.v1.Data
Assembly: Google.Apis.Games.v1.dll
Syntax
public class RevisionCheckResponse : object, IDirectResponseSchema

Properties

ApiVersion

The version of the API this client revision should use when calling API methods.

Declaration
public virtual string ApiVersion { 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

Kind

Uniquely identifies the type of this resource. Value is always the fixed string games#revisionCheckResponse.

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

RevisionStatus

The result of the revision check. Possible values are: - "OK" - The revision being used is current.

  • "DEPRECATED" - There is currently a newer version available, but the revision being used still works. - "INVALID" - The revision being used is not supported in any released version.
Declaration
public virtual string RevisionStatus { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top