class Google::Apis::GamesV1::InstanceIosDetails
The iOS details resource.
Attributes
Bundle identifier. Corresponds to the JSON property `bundleIdentifier` @return [String]
iTunes App ID. Corresponds to the JSON property `itunesAppId` @return [String]
Uniquely identifies the type of this resource. Value is always the fixed string `games#instanceIosDetails`. Corresponds to the JSON property `kind` @return [String]
Indicates that this instance is the default for new installations on iPad devices. Corresponds to the JSON property `preferredForIpad` @return [Boolean]
Indicates that this instance is the default for new installations on iPad devices. Corresponds to the JSON property `preferredForIpad` @return [Boolean]
Indicates that this instance is the default for new installations on iPhone devices. Corresponds to the JSON property `preferredForIphone` @return [Boolean]
Indicates that this instance is the default for new installations on iPhone devices. Corresponds to the JSON property `preferredForIphone` @return [Boolean]
Flag to indicate if this instance supports iPad. Corresponds to the JSON property `supportIpad` @return [Boolean]
Flag to indicate if this instance supports iPad. Corresponds to the JSON property `supportIpad` @return [Boolean]
Flag to indicate if this instance supports iPhone. Corresponds to the JSON property `supportIphone` @return [Boolean]
Flag to indicate if this instance supports iPhone. Corresponds to the JSON property `supportIphone` @return [Boolean]
Public Class Methods
# File lib/google/apis/games_v1/classes.rb, line 1284 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/games_v1/classes.rb, line 1289 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