Class: Google::Apis::AndroidpublisherV2::AppDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidpublisherV2::AppDetails
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v2/classes.rb,
 generated/google/apis/androidpublisher_v2/representations.rb,
 generated/google/apis/androidpublisher_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #contact_email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user-visible support email for this app. 
- 
  
    
      #contact_phone  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user-visible support telephone number for this app. 
- 
  
    
      #contact_website  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user-visible website for this app. 
- 
  
    
      #default_language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Default language code, in BCP 47 format (eg "en-US"). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AppDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AppDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AppDetails
Returns a new instance of AppDetails
| 222 223 224 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 222 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#contact_email ⇒ String
The user-visible support email for this app.
Corresponds to the JSON property contactEmail
| 205 206 207 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 205 def contact_email @contact_email end | 
#contact_phone ⇒ String
The user-visible support telephone number for this app.
Corresponds to the JSON property contactPhone
| 210 211 212 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 210 def contact_phone @contact_phone end | 
#contact_website ⇒ String
The user-visible website for this app.
Corresponds to the JSON property contactWebsite
| 215 216 217 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 215 def contact_website @contact_website end | 
#default_language ⇒ String
Default language code, in BCP 47 format (eg "en-US").
Corresponds to the JSON property defaultLanguage
| 220 221 222 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 220 def default_language @default_language end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 227 228 229 230 231 232 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 227 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 |