Class: Google::Apis::AuthorizedbuyersmarketplaceV1::PublisherProfileMobileApplication
- Inherits:
-
Object
- Object
- Google::Apis::AuthorizedbuyersmarketplaceV1::PublisherProfileMobileApplication
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb
Overview
A mobile application that contains a external app ID, name, and app store.
Instance Attribute Summary collapse
-
#app_store ⇒ String
The app store the app belongs to.
-
#external_app_id ⇒ String
The external ID for the app from its app store.
-
#name ⇒ String
The name of the app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PublisherProfileMobileApplication
constructor
A new instance of PublisherProfileMobileApplication.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PublisherProfileMobileApplication
Returns a new instance of PublisherProfileMobileApplication.
1838 1839 1840 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 1838 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_store ⇒ String
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
1825 1826 1827 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 1825 def app_store @app_store end |
#external_app_id ⇒ String
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
1831 1832 1833 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 1831 def external_app_id @external_app_id end |
#name ⇒ String
The name of the app.
Corresponds to the JSON property name
1836 1837 1838 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 1836 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1843 1844 1845 1846 1847 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 1843 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 |