class Google::Apis::GamesV1::CheckRevisionResponse
A third party checking a revision response.
Attributes
api_version[RW]
The version of the API this client revision should use when calling API methods. Corresponds to the JSON property `apiVersion` @return [String]
kind[RW]
Uniquely identifies the type of this resource. Value is always the fixed string `games#revisionCheckResponse`. Corresponds to the JSON property `kind` @return [String]
revision_status[RW]
The result of the revision check. Corresponds to the JSON property `revisionStatus` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/games_v1/classes.rb, line 2330 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/games_v1/classes.rb, line 2335 def update!(**args) @api_version = args[:api_version] if args.key?(:api_version) @kind = args[:kind] if args.key?(:kind) @revision_status = args[:revision_status] if args.key?(:revision_status) end