class Google::Apis::ContentV2_1::AccountBusinessInformation

Attributes

address[RW]

The address of the business. Corresponds to the JSON property `address` @return [Google::Apis::ContentV2_1::AccountAddress]

customer_service[RW]

The customer service information of the business. Corresponds to the JSON property `customerService` @return [Google::Apis::ContentV2_1::AccountCustomerService]

phone_number[RW]

The phone number of the business. Corresponds to the JSON property `phoneNumber` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 243
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 248
def update!(**args)
  @address = args[:address] if args.key?(:address)
  @customer_service = args[:customer_service] if args.key?(:customer_service)
  @phone_number = args[:phone_number] if args.key?(:phone_number)
end