Class: Google::Apis::ContentV2_1::LiaSettings

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LiaSettings

Returns a new instance of LiaSettings.



3844
3845
3846
# File 'lib/google/apis/content_v2_1/classes.rb', line 3844

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idFixnum

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

Returns:

  • (Fixnum)


3831
3832
3833
# File 'lib/google/apis/content_v2_1/classes.rb', line 3831

def 
  @account_id
end

#country_settingsArray<Google::Apis::ContentV2_1::LiaCountrySettings>

The LIA settings for each country. Corresponds to the JSON property countrySettings



3836
3837
3838
# File 'lib/google/apis/content_v2_1/classes.rb', line 3836

def country_settings
  @country_settings
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "content# liaSettings" Corresponds to the JSON property kind

Returns:

  • (String)


3842
3843
3844
# File 'lib/google/apis/content_v2_1/classes.rb', line 3842

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3849
3850
3851
3852
3853
# File 'lib/google/apis/content_v2_1/classes.rb', line 3849

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