class Google::Apis::GamesV1::ApplicationVerifyResponse
This is a JSON template for a third party application verification response resource.
Attributes
alternate_player_id[RW]
An alternate ID that was once used for the player that was issued the auth token used in this request. (This field is not normally populated.) Corresponds to the JSON property `alternate_player_id` @return [String]
kind[RW]
Uniquely identifies the type of this resource. Value is always the fixed string games#applicationVerifyResponse. Corresponds to the JSON property `kind` @return [String]
player_id[RW]
The ID of the player that was issued the auth token used in this request. Corresponds to the JSON property `player_id` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/games_v1/classes.rb, line 670 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/games_v1/classes.rb, line 675 def update!(**args) @alternate_player_id = args[:alternate_player_id] if args.key?(:alternate_player_id) @kind = args[:kind] if args.key?(:kind) @player_id = args[:player_id] if args.key?(:player_id) end