class Google::Apis::AndroidpublisherV3::AppDetails
The app details. The resource for DetailsService.
Attributes
contact_email[RW]
The user-visible support email for this app. Corresponds to the JSON property `contactEmail` @return [String]
contact_phone[RW]
The user-visible support telephone number for this app. Corresponds to the JSON property `contactPhone` @return [String]
contact_website[RW]
The user-visible website for this app. Corresponds to the JSON property `contactWebsite` @return [String]
default_language[RW]
Default language code, in BCP 47 format (eg “en-US”). Corresponds to the JSON property `defaultLanguage` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 170 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidpublisher_v3/classes.rb, line 175 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