class Google::Apis::ContentV2_1::LiaSettings

Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role.

Attributes

account_id[RW]

The ID of the account to which these LIA settings belong. Ignored upon update, always present in get request responses. Corresponds to the JSON property `accountId` @return [Fixnum]

country_settings[RW]

The LIA settings for each country. Corresponds to the JSON property `countrySettings` @return [Array<Google::Apis::ContentV2_1::LiaCountrySettings>]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “`content# liaSettings`” Corresponds to the JSON property `kind` @return [String]

Public Class Methods

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