Class: Google::Apis::PlaycustomappV1::CustomApp

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_codeString

Default listing language in BCP 47 format. Corresponds to the JSON property languageCode

Returns:

  • (String)


32
33
34
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 32

def language_code
  @language_code
end

#package_nameString

Output only. Package name of the created Android app. Only present in the API response. Corresponds to the JSON property packageName

Returns:

  • (String)


38
39
40
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 38

def package_name
  @package_name
end

#titleString

Title for the Android app. Corresponds to the JSON property title

Returns:

  • (String)


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