Class: Google::Apis::AndroidpublisherV3::AppDetails

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

The app details. The resource for DetailsService.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppDetails

Returns a new instance of AppDetails.



216
217
218
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 216

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

Instance Attribute Details

#contact_emailString

The user-visible support email for this app. Corresponds to the JSON property contactEmail

Returns:

  • (String)


199
200
201
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 199

def contact_email
  @contact_email
end

#contact_phoneString

The user-visible support telephone number for this app. Corresponds to the JSON property contactPhone

Returns:

  • (String)


204
205
206
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 204

def contact_phone
  @contact_phone
end

#contact_websiteString

The user-visible website for this app. Corresponds to the JSON property contactWebsite

Returns:

  • (String)


209
210
211
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 209

def contact_website
  @contact_website
end

#default_languageString

Default language code, in BCP 47 format (eg "en-US"). Corresponds to the JSON property defaultLanguage

Returns:

  • (String)


214
215
216
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 214

def default_language
  @default_language
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



221
222
223
224
225
226
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 221

def update!(**args)
  @contact_email = args[:contact_email] if args.key?(:contact_email)
  @contact_phone = args[:contact_phone] if args.key?(:contact_phone)
  @contact_website = args[:contact_website] if args.key?(:contact_website)
  @default_language = args[:default_language] if args.key?(:default_language)
end