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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CustomApp

Returns a new instance of CustomApp.



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

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

#titleString

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

Returns:

  • (String)


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

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



44
45
46
47
# File 'generated/google/apis/playcustomapp_v1/classes.rb', line 44

def update!(**args)
  @language_code = args[:language_code] if args.key?(:language_code)
  @title = args[:title] if args.key?(:title)
end