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.
3264 3265 3266 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3264 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ String
The physical address of the developer.
Corresponds to the JSON property address
3242 3243 3244 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3242 def address @address end |
#contact_email ⇒ String
The contact email of the developer.
Corresponds to the JSON property contactEmail
3247 3248 3249 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3247 def contact_email @contact_email end |
#developer_name ⇒ String
The developer name of the app.
Corresponds to the JSON property developerName
3252 3253 3254 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3252 def developer_name @developer_name end |
#phone_number ⇒ String
The phone number of the developer.
Corresponds to the JSON property phoneNumber
3257 3258 3259 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3257 def phone_number @phone_number end |
#website ⇒ String
The website of the developer.
Corresponds to the JSON property website
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 |