class Google::Apis::ContentV2::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/classes.rb, line 254
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/classes.rb, line 259
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