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.



3264
3265
3266
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3264

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

Instance Attribute Details

#addressString

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

Returns:

  • (String)


3242
3243
3244
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3242

def address
  @address
end

#contact_emailString

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

Returns:

  • (String)


3247
3248
3249
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3247

def contact_email
  @contact_email
end

#developer_nameString

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

Returns:

  • (String)


3252
3253
3254
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3252

def developer_name
  @developer_name
end

#phone_numberString

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

Returns:

  • (String)


3257
3258
3259
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3257

def phone_number
  @phone_number
end

#websiteString

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

Returns:

  • (String)


3262
3263
3264
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3262

def website
  @website
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3269
3270
3271
3272
3273
3274
3275
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3269

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