class Google::Apis::Adexchangebuyer2V2beta1::PublisherProfileMobileApplication
A mobile application that contains a external app ID, name, and app store.
Attributes
app_store[RW]
The app store the app belongs to. Corresponds to the JSON property `appStore` @return [String]
external_app_id[RW]
The external ID for the app from its app store. Corresponds to the JSON property `externalAppId` @return [String]
name[RW]
The name of the app. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 3567 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 3572 def update!(**args) @app_store = args[:app_store] if args.key?(:app_store) @external_app_id = args[:external_app_id] if args.key?(:external_app_id) @name = args[:name] if args.key?(:name) end