class Google::Apis::GamesV1::InstanceIosDetails

This is a JSON template for the iOS details resource.

Attributes

bundle_identifier[RW]

Bundle identifier. Corresponds to the JSON property `bundleIdentifier` @return [String]

itunes_app_id[RW]

iTunes App ID. Corresponds to the JSON property `itunesAppId` @return [String]

kind[RW]

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

preferred_for_ipad[RW]

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

preferred_for_ipad?[RW]

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

preferred_for_iphone[RW]

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

preferred_for_iphone?[RW]

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

support_ipad[RW]

Flag to indicate if this instance supports iPad. Corresponds to the JSON property `supportIpad` @return [Boolean]

support_ipad?[RW]

Flag to indicate if this instance supports iPad. Corresponds to the JSON property `supportIpad` @return [Boolean]

support_iphone[RW]

Flag to indicate if this instance supports iPhone. Corresponds to the JSON property `supportIphone` @return [Boolean]

support_iphone?[RW]

Flag to indicate if this instance supports iPhone. Corresponds to the JSON property `supportIphone` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/games_v1/classes.rb, line 1387
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 1392
def update!(**args)
  @bundle_identifier = args[:bundle_identifier] if args.key?(:bundle_identifier)
  @itunes_app_id = args[:itunes_app_id] if args.key?(:itunes_app_id)
  @kind = args[:kind] if args.key?(:kind)
  @preferred_for_ipad = args[:preferred_for_ipad] if args.key?(:preferred_for_ipad)
  @preferred_for_iphone = args[:preferred_for_iphone] if args.key?(:preferred_for_iphone)
  @support_ipad = args[:support_ipad] if args.key?(:support_ipad)
  @support_iphone = args[:support_iphone] if args.key?(:support_iphone)
end