Class: Google::Apis::DisplayvideoV2::MobileApp
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::MobileApp
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/representations.rb
Overview
A mobile app promoted by a mobile app install line item.
Instance Attribute Summary collapse
-
#app_id ⇒ String
Required.
-
#display_name ⇒ String
Output only.
-
#platform ⇒ String
Output only.
-
#publisher ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MobileApp
constructor
A new instance of MobileApp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MobileApp
Returns a new instance of MobileApp.
9010 9011 9012 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9010 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_id ⇒ String
Required. The ID of the app provided by the platform store. Android apps are
identified by the bundle ID used by Android's Play store, such as com.google.
android.gm
. iOS apps are identified by a nine-digit app ID used by Apple's
App store, such as 422689480
.
Corresponds to the JSON property appId
8993 8994 8995 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 8993 def app_id @app_id end |
#display_name ⇒ String
Output only. The app name.
Corresponds to the JSON property displayName
8998 8999 9000 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 8998 def display_name @display_name end |
#platform ⇒ String
Output only. The app platform.
Corresponds to the JSON property platform
9003 9004 9005 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9003 def platform @platform end |
#publisher ⇒ String
Output only. The app publisher.
Corresponds to the JSON property publisher
9008 9009 9010 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9008 def publisher @publisher end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9015 9016 9017 9018 9019 9020 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9015 def update!(**args) @app_id = args[:app_id] if args.key?(:app_id) @display_name = args[:display_name] if args.key?(:display_name) @platform = args[:platform] if args.key?(:platform) @publisher = args[:publisher] if args.key?(:publisher) end |