Class: Google::Apis::ContentV2_1::AccountCustomerService
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::AccountCustomerService
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#email ⇒ String
Customer service email.
-
#phone_number ⇒ String
Customer service phone number.
-
#url ⇒ String
Customer service URL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountCustomerService
constructor
A new instance of AccountCustomerService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AccountCustomerService
Returns a new instance of AccountCustomerService.
260 261 262 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 260 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
Customer service email.
Corresponds to the JSON property email
248 249 250 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 248 def email @email end |
#phone_number ⇒ String
Customer service phone number.
Corresponds to the JSON property phoneNumber
253 254 255 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 253 def phone_number @phone_number end |
#url ⇒ String
Customer service URL.
Corresponds to the JSON property url
258 259 260 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 258 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
265 266 267 268 269 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 265 def update!(**args) @email = args[:email] if args.key?(:email) @phone_number = args[:phone_number] if args.key?(:phone_number) @url = args[:url] if args.key?(:url) end |