Class: Google::Apis::AndroidpublisherV3::AppStoreAppDetails

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

Details about the app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppStoreAppDetails

Returns a new instance of AppStoreAppDetails.



776
777
778
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 776

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

Instance Attribute Details

#contact_emailString

Required. The app developer's contact email address. Corresponds to the JSON property contactEmail

Returns:

  • (String)


764
765
766
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 764

def contact_email
  @contact_email
end

#developer_nameString

Required. The app developer's name. Corresponds to the JSON property developerName

Returns:

  • (String)


769
770
771
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 769

def developer_name
  @developer_name
end

#developer_websiteString

Optional. Website link for the developer or app. Corresponds to the JSON property developerWebsite

Returns:

  • (String)


774
775
776
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 774

def developer_website
  @developer_website
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



781
782
783
784
785
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 781

def update!(**args)
  @contact_email = args[:contact_email] if args.key?(:contact_email)
  @developer_name = args[:developer_name] if args.key?(:developer_name)
  @developer_website = args[:developer_website] if args.key?(:developer_website)
end