Class: Google::Apis::GamesV1::CheckRevisionResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/games_v1/classes.rb,
lib/google/apis/games_v1/representations.rb,
lib/google/apis/games_v1/representations.rb

Overview

A third party checking a revision response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CheckRevisionResponse

Returns a new instance of CheckRevisionResponse.



2678
2679
2680
# File 'lib/google/apis/games_v1/classes.rb', line 2678

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_versionString

The version of the API this client revision should use when calling API methods. Corresponds to the JSON property apiVersion

Returns:

  • (String)


2665
2666
2667
# File 'lib/google/apis/games_v1/classes.rb', line 2665

def api_version
  @api_version
end

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string games#revisionCheckResponse. Corresponds to the JSON property kind

Returns:

  • (String)


2671
2672
2673
# File 'lib/google/apis/games_v1/classes.rb', line 2671

def kind
  @kind
end

#revision_statusString

The result of the revision check. Corresponds to the JSON property revisionStatus

Returns:

  • (String)


2676
2677
2678
# File 'lib/google/apis/games_v1/classes.rb', line 2676

def revision_status
  @revision_status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2683
2684
2685
2686
2687
# File 'lib/google/apis/games_v1/classes.rb', line 2683

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