class Google::Apis::DisplayvideoV1::MobileApp

A mobile app promoted by a mobile app install line item.

Attributes

app_id[RW]

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` @return [String]

display_name[RW]

Output only. The app name. Corresponds to the JSON property `displayName` @return [String]

platform[RW]

Output only. The app platform. Corresponds to the JSON property `platform` @return [String]

publisher[RW]

Output only. The app publisher. Corresponds to the JSON property `publisher` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 7191
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 7196
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