Class: Google::Apis::GamesV1::InstanceAndroidDetails

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

The Android instance details resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceAndroidDetails

Returns a new instance of InstanceAndroidDetails.



1225
1226
1227
# File 'lib/google/apis/games_v1/classes.rb', line 1225

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

Instance Attribute Details

#enable_piracy_checkBoolean Also known as: enable_piracy_check?

Flag indicating whether the anti-piracy check is enabled. Corresponds to the JSON property enablePiracyCheck

Returns:

  • (Boolean)


1205
1206
1207
# File 'lib/google/apis/games_v1/classes.rb', line 1205

def enable_piracy_check
  @enable_piracy_check
end

#kindString

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

Returns:

  • (String)


1212
1213
1214
# File 'lib/google/apis/games_v1/classes.rb', line 1212

def kind
  @kind
end

#package_nameString

Android package name which maps to Google Play URL. Corresponds to the JSON property packageName

Returns:

  • (String)


1217
1218
1219
# File 'lib/google/apis/games_v1/classes.rb', line 1217

def package_name
  @package_name
end

#preferredBoolean Also known as: preferred?

Indicates that this instance is the default for new installations. Corresponds to the JSON property preferred

Returns:

  • (Boolean)


1222
1223
1224
# File 'lib/google/apis/games_v1/classes.rb', line 1222

def preferred
  @preferred
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1230
1231
1232
1233
1234
1235
# File 'lib/google/apis/games_v1/classes.rb', line 1230

def update!(**args)
  @enable_piracy_check = args[:enable_piracy_check] if args.key?(:enable_piracy_check)
  @kind = args[:kind] if args.key?(:kind)
  @package_name = args[:package_name] if args.key?(:package_name)
  @preferred = args[:preferred] if args.key?(:preferred)
end