Class: Google::Apis::AndroidpublisherV3::Listing

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb

Overview

A localized store listing. The resource for ListingsService.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Listing

Returns a new instance of Listing.



1376
1377
1378
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1376

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#full_descriptionString

Full description of the app. Corresponds to the JSON property fullDescription

Returns:

  • (String)


1353
1354
1355
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1353

def full_description
  @full_description
end

#languageString

Language localization code (a BCP-47 language tag; for example, "de-AT" for Austrian German). Corresponds to the JSON property language

Returns:

  • (String)


1359
1360
1361
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1359

def language
  @language
end

#short_descriptionString

Short description of the app. Corresponds to the JSON property shortDescription

Returns:

  • (String)


1364
1365
1366
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1364

def short_description
  @short_description
end

#titleString

Localized title of the app. Corresponds to the JSON property title

Returns:

  • (String)


1369
1370
1371
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1369

def title
  @title
end

#videoString

URL of a promotional YouTube video for the app. Corresponds to the JSON property video

Returns:

  • (String)


1374
1375
1376
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1374

def video
  @video
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1381
1382
1383
1384
1385
1386
1387
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1381

def update!(**args)
  @full_description = args[:full_description] if args.key?(:full_description)
  @language = args[:language] if args.key?(:language)
  @short_description = args[:short_description] if args.key?(:short_description)
  @title = args[:title] if args.key?(:title)
  @video = args[:video] if args.key?(:video)
end