Class: Google::Apis::PlaycustomappV1::CustomApp
- Inherits:
-
Object
- Object
- Google::Apis::PlaycustomappV1::CustomApp
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/playcustomapp_v1/classes.rb,
generated/google/apis/playcustomapp_v1/representations.rb,
generated/google/apis/playcustomapp_v1/representations.rb
Overview
This resource represents a custom app.
Instance Attribute Summary collapse
-
#language_code ⇒ String
Default listing language in BCP 47 format.
-
#package_name ⇒ String
Output only.
-
#title ⇒ String
Title for the Android app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomApp
constructor
A new instance of CustomApp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomApp
Returns a new instance of CustomApp.
45 46 47 |
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 45 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language_code ⇒ String
Default listing language in BCP 47 format.
Corresponds to the JSON property languageCode
32 33 34 |
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 32 def language_code @language_code end |
#package_name ⇒ String
Output only. Package name of the created Android app. Only present in the API
response.
Corresponds to the JSON property packageName
38 39 40 |
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 38 def package_name @package_name end |
#title ⇒ String
Title for the Android app.
Corresponds to the JSON property title
43 44 45 |
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 43 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
50 51 52 53 54 |
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 50 def update!(**args) @language_code = args[:language_code] if args.key?(:language_code) @package_name = args[:package_name] if args.key?(:package_name) @title = args[:title] if args.key?(:title) end |