class Google::Apis::GamesV1::InstanceWebDetails

The Web details resource.

Attributes

kind[RW]

Uniquely identifies the type of this resource. Value is always the fixed string `games#instanceWebDetails`. Corresponds to the JSON property `kind` @return [String]

launch_url[RW]

Launch URL for the game. Corresponds to the JSON property `launchUrl` @return [String]

preferred[RW]

Indicates that this instance is the default for new installations. Corresponds to the JSON property `preferred` @return [Boolean]

preferred?[RW]

Indicates that this instance is the default for new installations. Corresponds to the JSON property `preferred` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/games_v1/classes.rb, line 1321
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 1326
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @launch_url = args[:launch_url] if args.key?(:launch_url)
  @preferred = args[:preferred] if args.key?(:preferred)
end