class Google::Apis::AuthorizedbuyersmarketplaceV1::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. Can be used to filter the response of the publisherProfiles.list method. Corresponds to the JSON property ‘appStore` @return [String]

external_app_id[RW]

The external ID for the app from its app store. Can be used to filter the response of the publisherProfiles.list method. 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/authorizedbuyersmarketplace_v1/classes.rb, line 1811
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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