Class: Google::Apis::AndroidpublisherV3::DeveloperDetails

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 developer details of a Google Play app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeveloperDetails

Returns a new instance of DeveloperDetails.



3347
3348
3349
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3347

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

Instance Attribute Details

#addressString

The physical address of the developer. Corresponds to the JSON property address

Returns:

  • (String)


3325
3326
3327
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3325

def address
  @address
end

#contact_emailString

The contact email of the developer. Corresponds to the JSON property contactEmail

Returns:

  • (String)


3330
3331
3332
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3330

def contact_email
  @contact_email
end

#developer_nameString

The developer name of the app. Corresponds to the JSON property developerName

Returns:

  • (String)


3335
3336
3337
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3335

def developer_name
  @developer_name
end

#phone_numberString

The phone number of the developer. Corresponds to the JSON property phoneNumber

Returns:

  • (String)


3340
3341
3342
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3340

def phone_number
  @phone_number
end

#websiteString

The website of the developer. Corresponds to the JSON property website

Returns:

  • (String)


3345
3346
3347
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3345

def website
  @website
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3352
3353
3354
3355
3356
3357
3358
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3352

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