Class: Google::Apis::AndroidpublisherV3::DeveloperDetails
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::DeveloperDetails
- 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
-
#address ⇒ String
The physical address of the developer.
-
#contact_email ⇒ String
The contact email of the developer.
-
#developer_name ⇒ String
The developer name of the app.
-
#phone_number ⇒ String
The phone number of the developer.
-
#website ⇒ String
The website of the developer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeveloperDetails
constructor
A new instance of DeveloperDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#address ⇒ String
The physical address of the developer.
Corresponds to the JSON property address
3325 3326 3327 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3325 def address @address end |
#contact_email ⇒ String
The contact email of the developer.
Corresponds to the JSON property contactEmail
3330 3331 3332 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3330 def contact_email @contact_email end |
#developer_name ⇒ String
The developer name of the app.
Corresponds to the JSON property developerName
3335 3336 3337 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3335 def developer_name @developer_name end |
#phone_number ⇒ String
The phone number of the developer.
Corresponds to the JSON property phoneNumber
3340 3341 3342 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3340 def phone_number @phone_number end |
#website ⇒ String
The website of the developer.
Corresponds to the JSON property website
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 |