class Google::Apis::PlaycustomappV1::CustomApp
This resource represents a custom app.
Attributes
language_code[RW]
Default listing language in BCP 47 format. Corresponds to the JSON property `languageCode` @return [String]
package_name[RW]
Output only. Package name of the created Android app. Only present in the API response. Corresponds to the JSON property `packageName` @return [String]
title[RW]
Title for the Android app. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/playcustomapp_v1/classes.rb, line 45 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/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