class Google::Apis::ContentV2_1::AccountCustomerService
Attributes
email[RW]
Customer service email. Corresponds to the JSON property `email` @return [String]
phone_number[RW]
Customer service phone number. Corresponds to the JSON property `phoneNumber` @return [String]
url[RW]
Customer service URL. Corresponds to the JSON property `url` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 306 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 311 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